server-ts: Port boption

This commit is contained in:
Elian Doran
2024-02-17 01:00:38 +02:00
parent 6dd2cd39aa
commit 768aaf2d78
4 changed files with 24 additions and 13 deletions

View File

@@ -1,3 +1,5 @@
// FIXME: Booleans should probably be numbers instead (as SQLite does not have booleans.);
export interface AttachmentRow {
attachmentId?: string;
ownerId: string;
@@ -34,3 +36,10 @@ export interface RecentNoteRow {
notePath: string;
utcDateCreated?: string;
}
export interface OptionRow {
name: string;
value: string;
isSynced: boolean;
utcDateModified: string;
}