pdfrx_web
    Preparing search index...

    Interface FontResolution

    The outcome of resolving one missing-font query: which substitute file to download and the family name it declares.

    Missing-font fallback — the full font-mapping reference.

    interface FontResolution {
        expectedLength?: number;
        resolvedFace: string;
        url: string;
    }
    Index
    expectedLength?: number

    Expected byte length, used to reject stale or corrupted downloads.

    resolvedFace: string

    The font family name the engine is expected to see inside the file.

    url: string

    URL of the substitute font file to fetch (must be CORS-accessible).