fix(view/table): most type errors

This commit is contained in:
Elian Doran
2025-07-01 12:09:13 +03:00
parent 84db4ed57c
commit 2cbb49681a
7 changed files with 34 additions and 17 deletions

View File

@@ -7,7 +7,7 @@ import ViewModeStorage from "./view_mode_storage.js";
export interface ViewModeArgs {
$parent: JQuery<HTMLElement>;
parentNote: FNote;
parentNotePath: string | null | undefined;
parentNotePath?: string | null;
noteIds: string[];
showNotePath?: boolean;
}