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' ]