sync with local storage

This commit is contained in:
2023-05-22 00:19:46 +02:00
parent 6dd8c2d524
commit c2cbe513d1
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 {}