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 9df8830 commit ee6c9a1Copy full SHA for ee6c9a1
1 file changed
extensions/workspaces/src/schema.ts
@@ -30,14 +30,13 @@ export type WorkspaceWidget = {
30
bindings?: Record<string, WorkspaceBinding>;
31
props?: JsonValue;
32
};
33
-export type WorkspaceTabLayout = "grid" | "full";
34
export type WorkspaceTab = {
35
slug: string;
36
title: string;
37
icon?: string;
38
hidden: boolean;
39
/** Default grid, or a single app-like widget without grid chrome. */
40
- layout?: WorkspaceTabLayout;
+ layout?: "grid" | "full";
41
createdBy: WorkspaceActor;
42
widgets: WorkspaceWidget[];
43
0 commit comments