2025-08-22 23:47:02 +03:00
|
|
|
import NoteContext from "../../components/note_context";
|
2025-08-22 15:53:52 +03:00
|
|
|
import FNote from "../../entities/fnote";
|
|
|
|
|
|
|
|
|
|
export interface TabContext {
|
|
|
|
|
note: FNote | null | undefined;
|
2025-08-22 16:24:02 +03:00
|
|
|
hidden: boolean;
|
2025-08-22 21:58:35 +03:00
|
|
|
ntxId?: string | null;
|
2025-08-22 21:45:03 +03:00
|
|
|
hoistedNoteId?: string;
|
2025-08-22 21:58:35 +03:00
|
|
|
notePath?: string | null;
|
2025-08-22 23:47:02 +03:00
|
|
|
noteContext?: NoteContext;
|
2025-08-23 20:31:00 +03:00
|
|
|
componentId: string;
|
2025-08-27 13:05:51 +03:00
|
|
|
activate(): void;
|
2025-08-22 15:53:52 +03:00
|
|
|
}
|