pdfrx_web
    Preparing search index...

    Type Alias NormalizedPdfSource

    NormalizedPdfSource:
        | { kind: "url"; options: PdfOpenUrlOptions; url: string
        | URL }
        | {
            data: Uint8Array | ArrayBuffer | File | Blob;
            kind: "data";
            options: PdfOpenDataOptions;
        }

    A PdfSource reduced to the two shapes the viewer actually accepts.