@kirz/react-native-toolkit
Version:
Toolkit to speed up React Native development
8 lines • 386 B
TypeScript
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