trilium/apps/client/src/widgets/ribbon/ribbon-interface.ts
2025-08-22 21:45:03 +03:00

10 lines
222 B
TypeScript

import FNote from "../../entities/fnote";
export interface TabContext {
note: FNote | null | undefined;
hidden: boolean;
ntxId?: string | null | undefined;
hoistedNoteId?: string;
notePath?: string;
}