Migrate workspace api to ts

This commit is contained in:
2025-05-06 20:42:12 +02:00
parent 66fe5e485b
commit 02c8100f0b
3 changed files with 159 additions and 62 deletions

View File

@@ -1,5 +1,13 @@
import { Theme } from './theme';
export interface DeleteWorkspaceResponse {
nextWorkspaceName: string;
}
export interface LastWorkspaceNameResponse {
lastWorkspaceName: string;
}
export interface WorkspaceSettings {
theme: Theme;
autoSave: boolean;