chore(client): fix a type error

This commit is contained in:
Elian Doran 2025-05-05 19:12:14 +03:00
parent 340bd7c90e
commit ac7f178e26
No known key found for this signature in database

View File

@ -1,4 +1,4 @@
import { AttributeType } from "./rows.js";
import type { AttributeType } from "./rows.js";
type LauncherNoteType = "launcher" | "search" | "doc" | "noteMap" | "contentWidget" | "book" | "file" | "image" | "text" | "relationMap" | "render" | "canvas" | "mermaid" | "webView" | "code" | "mindMap" | "geoMap";
@ -42,4 +42,4 @@ export interface HiddenSubtreeItem {
| "quickSearch"
| "aiChatLauncher";
command?: keyof typeof Command;
}
}