summaryrefslogtreecommitdiff
path: root/client/src/models.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/models.ts')
-rw-r--r--client/src/models.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/client/src/models.ts b/client/src/models.ts
index 5e53484..38b48ad 100644
--- a/client/src/models.ts
+++ b/client/src/models.ts
@@ -1,5 +1,5 @@
-import { SerializedError } from '@reduxjs/toolkit';
-import { FetchBaseQueryError } from '@reduxjs/toolkit/query';
+import type { SerializedError } from '@reduxjs/toolkit';
+import type { FetchBaseQueryError } from '@reduxjs/toolkit/query';
export interface Guest {
id?: number;
@@ -36,4 +36,5 @@ export interface StatusProps {
isError?: boolean;
error: FetchBaseQueryError | SerializedError | undefined;
setOpen: (open: boolean) => void;
+ type: string;
}