react-native-cookies
react-native-cookies copied to clipboard
not Supporting in typescript
found there is no package available for typescript
npm install @types/react-native-cookies
you need to add a cookieManager.d.ts file to your project
declare module "react-native-cookies" {
function clearAll(useWebKit = false): void
function get(url: string, useWebKit = false): string
function set(cookie: string, useWebKit = false): void
interface CookieManager {
clearAll(useWebKit = false): void
get(url: string, useWebKit = false): string
set(cookie: string, useWebKit = false): void
}
}
I have forked the repo here: https://github.com/safaiyeh/react-native-cookie-store We can create issues and PRs there to continue the development of the project.