UNPKG

@kirz/react-native-toolkit

Version:

Toolkit to speed up React Native development

8 lines 386 B
import React, { PropsWithChildren } from 'react'; import { CSyncStorage } from '../utils/SyncStorage'; export type StorageContextType = { storage: CSyncStorage; }; export declare const StorageContext: React.Context<StorageContextType>; export declare function StorageProvider({ children }: PropsWithChildren<object>): JSX.Element | null; //# sourceMappingURL=StorageContext.d.ts.map