@qrcommunication/gigapdf-lib — SDK API reference - v0.110.3
    Preparing search index...

    Interface GigaDocument

    The unified editable document model — the format-neutral tree every format lowers into and is reconstructed from. v is the envelope version. Leaves beyond what a host typically edits (styles, resources) are carried opaquely so a round-trip preserves them.

    interface GigaDocument {
        v: number;
        meta: {
            title: string | null;
            author: string | null;
            subject: string | null;
            keywords: string[];
            lang: string | null;
        };
        styles: unknown;
        sections: GigaSection[];
        outline: GigaOutlineNode[];
        resources: unknown;
    }
    Index

    Properties

    v: number
    meta: {
        title: string | null;
        author: string | null;
        subject: string | null;
        keywords: string[];
        lang: string | null;
    }
    styles: unknown
    sections: GigaSection[]
    outline: GigaOutlineNode[]

    Bookmark / chapter hierarchy (empty when the source has none).

    resources: unknown