From 1ebc55c72a1a17293bbf4ad86e0177a10a794750 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 17 Sep 2023 12:23:47 +0200 Subject: Make app packageable --- src/view/client/book.ts | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/view/client/book.ts (limited to 'src/view/client/book.ts') diff --git a/src/view/client/book.ts b/src/view/client/book.ts deleted file mode 100644 index 680cc11..0000000 --- a/src/view/client/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