UNPKG

490 BTypeScriptView Raw
1import { Reactotron } from "reactotron-core-client";
2import { ReactotronReactNative } from "../reactotron-react-native";
3export interface AsyncStorageOptions {
4 ignore?: string[];
5}
6declare const _default: <ReactotronSubtype = ReactotronReactNative>(options: AsyncStorageOptions) => (reactotron: Reactotron<ReactotronSubtype> & ReactotronReactNative) => {
7 features: {
8 trackAsyncStorage: () => void;
9 untrackAsyncStorage: () => void;
10 };
11};
12export default _default;