pdfrx_web
    Preparing search index...

    Interface PdfAnnotationHistoryChange

    A reversible annotation mutation. Unlike PdfAnnotationChange, this carries both states so observers can build Undo/Redo history without having to intercept the API call before it reaches PdfDocument.

    interface PdfAnnotationHistoryChange {
        after: PdfAnnotationSpec | null;
        before: PdfAnnotationSpec | null;
        id: string;
        pageNumber: number;
    }
    Index
    after: PdfAnnotationSpec | null
    before: PdfAnnotationSpec | null
    id: string
    pageNumber: number