fix: resolve type errors

This commit is contained in:
Yuri Karamian
2026-08-17 19:04:21 +02:00
parent 44dcfbe24a
commit 1ebf2a9843
4 changed files with 114 additions and 81 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ export async function getNoteSwitcherTitles(
return invoke("get_note_switcher_titles", { recentPaths });
}
export async function getGraphData(): Promise<{ nodes: { title: string; path: string }[]; edges: { source: number; target: number }[] }> {
export async function getGraphData(): Promise<{ nodes: { title: string; path: string }[]; edges: { source: number; target: number; bidirectional: boolean }[] }> {
return invoke("get_graph_data");
}