LWT JavaScript API
    Preparing search index...

    A book as the list and detail endpoints return it.

    interface Book {
        author: string | null;
        currentChapter: number;
        description?: string | null;
        id: number;
        progress: number;
        sourceType: string;
        title: string;
        totalChapters: number;
    }
    Index
    author: string | null
    currentChapter: number
    description?: string | null
    id: number
    progress: number
    sourceType: string
    title: string
    totalChapters: number