summaryrefslogtreecommitdiff
path: root/app/src/store/state.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/store/state.ts')
-rw-r--r--app/src/store/state.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/src/store/state.ts b/app/src/store/state.ts
new file mode 100644
index 0000000..e4169ff
--- /dev/null
+++ b/app/src/store/state.ts
@@ -0,0 +1,6 @@
+import { AuthState } from "./modules/auth";
+
+export interface RootState {
+ api: string;
+ auth?: AuthState;
+}