summaryrefslogtreecommitdiff
path: root/client/src/models.ts
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-09-21 08:00:39 -0700
committerMichael Hunteman <michael@huntm.net>2024-09-21 11:39:18 -0700
commit2133253836de428e58b4ba1c9b7e863485b6b870 (patch)
tree9c175fd811975a21fcf60a5b14004443d32fe989 /client/src/models.ts
parenta54a93b724a6104213b17271fc298e37adedc1c5 (diff)
Use snackbar globally
Diffstat (limited to 'client/src/models.ts')
-rw-r--r--client/src/models.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/client/src/models.ts b/client/src/models.ts
index 38b48ad..6840a46 100644
--- a/client/src/models.ts
+++ b/client/src/models.ts
@@ -1,6 +1,3 @@
-import type { SerializedError } from '@reduxjs/toolkit';
-import type { FetchBaseQueryError } from '@reduxjs/toolkit/query';
-
export interface Guest {
id?: number;
firstName: string;
@@ -31,10 +28,3 @@ export interface AdminLogin {
guests: Guest[];
token: string;
}
-
-export interface StatusProps {
- isError?: boolean;
- error: FetchBaseQueryError | SerializedError | undefined;
- setOpen: (open: boolean) => void;
- type: string;
-}