LWT JavaScript API
    Preparing search index...

    Interface BookImportResponse

    Result of an EPUB import.

    error carries a failure the server handled deliberately (no language chosen, unreadable EPUB); a transport failure surfaces on the envelope.

    interface BookImportResponse {
        bookId?: number | null;
        error?: string;
        message?: string;
        success: boolean;
    }
    Index
    bookId?: number | null
    error?: string
    message?: string
    success: boolean