pdfrx_web
    Preparing search index...

    Interface PdfEditHistory

    Shared annotation/form/page-edit Undo/Redo state.

    interface PdfEditHistory {
        canRedo: boolean;
        canUndo: boolean;
        clearHistory: () => void;
        redo: () => Promise<void>;
        undo: () => Promise<void>;
    }
    Index
    canRedo: boolean
    canUndo: boolean
    clearHistory: () => void

    Drops every Undo/Redo entry without changing the current document.

    redo: () => Promise<void>
    undo: () => Promise<void>