pdfrx_web
    Preparing search index...

    Type Alias PdfRawPatchValue

    PdfRawPatchValue:
        | Exclude<PdfRawObject, { kind: "array" | "dictionary" | "stream" }>
        | { id: string; kind: "localReference" }
        | { items: PdfRawPatchValue[]; kind: "array" }
        | { entries: Record<string, PdfRawPatchValue>; kind: "dictionary" }
        | {
            data: Uint8Array;
            entries: Record<string, PdfRawPatchValue>;
            kind: "stream";
            rawData?: Uint8Array;
        }

    Value accepted by a raw PDF edit operation.

    It has the same recursive shapes as PdfRawObject, plus localReference, which points at an indirect dictionary created in the same batch. With PdfRawObjectEditor, use PdfRawCreatedObject.reference instead of constructing a local reference.