@cavell/kit API
    Preparing search index...

    Interface BlockText

    interface BlockText {
        caption?: string;
        marker?: string;
        source?: string;
        text: string;
        title?: string;
        type: "text";
    }

    Hierarchy

    • BlockBase
      • BlockText
    Index
    caption?: string

    Section heading of the block within its source.

    marker?: string
    source?: string

    Publisher / collection the source belongs to.

    text: string

    Block text.

    title?: string

    Source document title.

    type: "text"