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

    A frame range representing starting and ending frames or pages.

    If both start and end are missing, the frame will span the entire asset.

    interface Frame {
        end?: null | number;
        start?: null | number;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    Properties

    end?: null | number

    The end of the frame inclusive or the end of the asset if not present.

    start?: null | number

    The start of the frame or the end of the asset if not present.

    The first frame/page starts at 0.