igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
24 lines (23 loc) • 617 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Enumeration used to identify the cause of the [[UndoUnit.execute]]
* @see [[UndoExecuteContext.reason]]
*/
export declare enum UndoExecuteReason {
/**
* The execute is being performed because an Undo was requested.
*/
Undo = 0,
/**
* The execute is being performed because a Redo was requested
*/
Redo = 1,
/**
* The execute is being performed because an [[UndoTransaction]] was being rolled back.
*/
Rollback = 2
}
/**
* @hidden
*/
export declare let UndoExecuteReason_$type: Type;