UNPKG

@mescius/dspdfviewer

Version:
22 lines (21 loc) 652 B
/** * Undo storage options. **/ export type UndoStorageOptions = { /** * Max undo levels. **/ maxLevels?: number; /** * The names of the undo commands to skip. * Available built-in command names are: "Open", "Close", "PageIndex", "Zoom". * Note that the "Open"/"Close" and "StartAnimation"/"StopAnimation" commands are paired - if one command is skipped, the other command will also be skipped. * @example * ```javascript * var viewer = new GcWordViewer(selector, { * undo: { skipCommands: ["Open", "Zoom"] } * }); * ``` **/ skipCommands?: string[]; };