| 7 | import ReaderModal from "./ReaderModal"; |
| 8 | |
| 9 | interface Book { |
| 10 | id: number; |
| 11 | title: string; |
| 12 | author: string; |
| 13 | publisher?: string; |
| 14 | year?: number; |
| 15 | language?: string; |
| 16 | extension?: string; |
| 17 | filesize?: number; |
| 18 | filesizeString?: string; |
| 19 | hash?: string; |
| 20 | cover?: string; |
| 21 | description?: string; |
| 22 | pages?: number; |
| 23 | [key: string]: any; |
| 24 | } |
| 25 | |
| 26 | interface BookDetailModalProps { |
| 27 | book: Book; |
nothing calls this directly
no outgoing calls
no test coverage detected