export interface Book { title: string; author: string | undefined; prefaceContent: string; chapters: Array; } export interface Chapter { title: string; text: string; subchapters: Array; }