aboutsummaryrefslogtreecommitdiff
path: root/src/book.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/book.ts')
-rw-r--r--src/book.ts14
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' ]