MCPcopy
hub / github.com/shiyi-0x7f/o-lib / Book

Interface Book

src/components/BookDetailModal.tsx:9–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7import ReaderModal from "./ReaderModal";
8
9interface 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
26interface BookDetailModalProps {
27 book: Book;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected