UNPKG

358 BTypeScriptView Raw
1import type { ReactotronCore } from "reactotron-core-client";
2export interface AsyncStorageOptions {
3 ignore?: string[];
4}
5declare const asyncStorage: (options?: AsyncStorageOptions) => (reactotron: ReactotronCore) => {
6 features: {
7 trackAsyncStorage: () => void;
8 untrackAsyncStorage: () => void;
9 };
10};
11export default asyncStorage;