sync with local storage

This commit is contained in:
2023-05-22 00:19:46 +02:00
parent 87c3ff52ef
commit 16c92ed33f
14 changed files with 95 additions and 67 deletions

13
src/types.d.ts vendored
View File

@@ -23,5 +23,18 @@ declare global {
domElement?: HTMLElement
show: boolean
}
interface NoteRelations {
id: string
to: string[]
from: string[]
}
interface NotesRelations {
[noteId: string]: {
to: string[]
from: string[]
}
}
}
export {}