Kizuki
    Preparing search index...

    Interface ExtractedPassage

    A passage found in the material, before it gets an id.

    interface ExtractedPassage {
        location: {
            cells?: string;
            heading?: string;
            notes?: boolean;
            page?: number;
            paragraph?: number;
            sheet?: string;
            slide?: number;
        };
        sectionIndex: number;
        text: string;
    }
    Index
    location: {
        cells?: string;
        heading?: string;
        notes?: boolean;
        page?: number;
        paragraph?: number;
        sheet?: string;
        slide?: number;
    }

    Where the passage sits in the file, such as its page, slide, or cell range.

    sectionIndex: number

    Index into Extracted.sections.

    text: string

    The passage's text as read from the file.