We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458cbfd commit 85fc861Copy full SHA for 85fc861
invokeai/frontend/web/src/features/ui/store/uiTypes.ts
@@ -11,20 +11,6 @@ const zPartialDimensions = z.object({
11
height: z.number().optional(),
12
});
13
14
-const zDockviewPanelState = z.object({
15
- id: z.string(),
16
- type: z.literal('dockview-panel'),
17
- isActive: z.boolean(),
18
-});
19
-export type StoredDockviewPanelState = z.infer<typeof zDockviewPanelState>;
20
-
21
-const zGridviewPanelState = z.object({
22
23
- type: z.literal('gridview-panel'),
24
- dimensions: zPartialDimensions,
25
26
-export type StoredGridviewPanelState = z.infer<typeof zGridviewPanelState>;
27
28
const zSerializable = z.any().refine(isPlainObject);
29
export type Serializable = z.infer<typeof zSerializable>;
30
0 commit comments