pdfrx_web
    Preparing search index...

    Type Alias PdfAnnotationChange

    PdfAnnotationChange:
        | {
            id: string;
            pageNumber: number;
            spec: PdfAnnotationSpec;
            type: "add"
            | "update";
        }
        | { id: string; pageNumber: number; type: "remove" }

    One synchronization-friendly annotation mutation.