diff options
author | Kirill Rogovoy <[email protected]> | 2021-07-20 21:24:52 +0300 |
---|---|---|
committer | Kirill Rogovoy <[email protected]> | 2021-07-20 21:24:52 +0300 |
commit | 5f4611d65e40eae3ca6191a15f68d69ea5a1c4cb (patch) | |
tree | 273dfc086444533d86d580961c92ba8d14781a67 /app/services/reactotron/reactotron-config.ts | |
parent | f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (diff) |
WIP
Diffstat (limited to 'app/services/reactotron/reactotron-config.ts')
-rw-r--r-- | app/services/reactotron/reactotron-config.ts | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/app/services/reactotron/reactotron-config.ts b/app/services/reactotron/reactotron-config.ts deleted file mode 100644 index 40e9c93..0000000 --- a/app/services/reactotron/reactotron-config.ts +++ /dev/null @@ -1,30 +0,0 @@ -export interface ReactotronConfig { - /** The name of the app. */ - name?: string - /** The host to connect to: default 'localhost'. */ - host?: string - /** Should we use async storage */ - useAsyncStorage?: boolean - /** Should we clear Reactotron when load? */ - clearOnLoad?: boolean - /** Root state logging. */ - state?: { - /** log the initial data that we put into the state on startup? */ - initial?: boolean - /** log snapshot changes. */ - snapshots?: boolean - } -} - -/** - * The default Reactotron configuration. - */ -export const DEFAULT_REACTOTRON_CONFIG: ReactotronConfig = { - clearOnLoad: true, - host: 'localhost', - useAsyncStorage: true, - state: { - initial: true, - snapshots: false, - }, -} |