From 06f045e90bb57c36738e58ee6830e2a2391bc6a3 Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 16 Sep 2023 18:28:16 +0200 Subject: Migrate CLI to python --- src/book.ts | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/book.ts (limited to 'src/book.ts') diff --git a/src/book.ts b/src/book.ts deleted file mode 100644 index 680cc11..0000000 --- a/src/book.ts +++ /dev/null @@ -1,15 +0,0 @@ -export interface Book { - title: string - subtitle?: string - authors: Array - authorsSort: string - genres: Array - date: number - summary?: string - read: ReadStatus, - cover: string -} - -export type ReadStatus = 'Read' | 'Unread' | 'Reading' | 'Stopped' - -export const readStatuses: Array = ['Read', 'Unread', 'Reading', 'Stopped' ] -- cgit v1.2.3