Migrate navigation to ts

This commit is contained in:
2025-05-18 12:33:42 +02:00
parent 9125cbdad3
commit a8a525531e
3 changed files with 32 additions and 23 deletions

View File

@@ -30,10 +30,12 @@ export const DEFAULT_WORKSPACE_SETTINGS: WorkspaceSettings = {
export interface Workspace extends WorkspaceSettings {
name: string;
createdAt: number;
}
export const DEFAULT_WORKSPACE: Workspace = {
name: '',
createdAt: Date.now(),
...DEFAULT_WORKSPACE_SETTINGS,
};