decrypt notes

This commit is contained in:
2023-05-22 20:48:53 +02:00
parent d45ceb9b41
commit b7e5da2354
11 changed files with 152 additions and 24 deletions

7
src/types.d.ts vendored
View File

@@ -12,6 +12,10 @@ declare global {
wordCount: number
}
interface BaseNotes {
[noteId: string]: BaseNote
}
interface ViewMode {
name: string
icon: string
@@ -36,5 +40,8 @@ declare global {
from: string[]
}
}
type ClientKey = string
type EncryptionKey = string
}
export {}