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