book.ts 263 B

1234567891011121314151617
  1. export type Chapter = {
  2. id: string;
  3. title: string;
  4. content: string[];
  5. };
  6. export type Book = {
  7. id: string;
  8. title: string;
  9. author: string;
  10. category: string;
  11. description: string;
  12. wordCount: string;
  13. coverStyle: string;
  14. chapters: Chapter[];
  15. };