| 1234567891011121314151617 |
- export type Chapter = {
- id: string;
- title: string;
- content: string[];
- };
- export type Book = {
- id: string;
- title: string;
- author: string;
- category: string;
- description: string;
- wordCount: string;
- coverStyle: string;
- chapters: Chapter[];
- };
|