| 12345678910111213141516171819202122232425262728 |
- export type BookEntryKind = "lore" | "novel";
- export type BookEntry = {
- id: string;
- title: string;
- kind: BookEntryKind;
- order: number;
- content: string[];
- };
- export type BookSection = {
- id: string;
- title: string;
- kind: BookEntryKind;
- order: number;
- entries: BookEntry[];
- };
- export type Book = {
- id: string;
- title: string;
- author: string;
- category: string;
- description: string;
- wordCount: string;
- coverStyle: string;
- sections: BookSection[];
- };
|