diff options
author | Joris | 2023-02-12 13:05:25 +0100 |
---|---|---|
committer | Joris | 2023-02-12 13:05:25 +0100 |
commit | 25ecb1cb75b7b5b584ad223e12d74c3e3ee7da89 (patch) | |
tree | 54118b78bd783812725a6a6cd43f3b4d47ffe006 /src/book.ts | |
parent | 31acb6e43c07066e9a5ba404ea6c59201937c05a (diff) |
Add textual search on title, subtitle and authors
Diffstat (limited to 'src/book.ts')
-rw-r--r-- | src/book.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/book.ts b/src/book.ts new file mode 100644 index 0000000..a5ddb75 --- /dev/null +++ b/src/book.ts @@ -0,0 +1,14 @@ +export interface Book { + title: string + subtitle: string + authors: Array<string> + authorsSort: string + genres: Array<string> + date: string + read: ReadStatus, + cover: string +} + +export type ReadStatus = 'Read' | 'Unread' | 'Reading' | 'Stopped' + +export const readStatuses: Array<ReadStatus> = ['Read', 'Unread', 'Reading', 'Stopped' ] |