@contentauth/c2pa-js
    Preparing search index...

    A spatial, temporal, frame, or textual range describing the region of interest.

    interface Range {
        frame?: Frame | null;
        item?: Item | null;
        shape?: Shape | null;
        text?: Text | null;
        time?: Time | null;
        type: "spatial" | "temporal" | "frame" | "textual" | "identified";
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    frame?: Frame | null

    A frame range.

    item?: Item | null

    A item identifier.

    shape?: Shape | null

    A spatial range.

    text?: Text | null

    A textual range.

    time?: Time | null

    A temporal range.

    type: "spatial" | "temporal" | "frame" | "textual" | "identified"

    The type of range of interest.