igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
19 lines (18 loc) • 416 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Used to indicate the type of operation that [[UndoHistoryItem]] represents.
*/
export declare enum UndoHistoryItemType {
/**
* The item represents an undo operation.
*/
Undo = 0,
/**
* The item represents a redo operation.
*/
Redo = 1
}
/**
* @hidden
*/
export declare let UndoHistoryItemType_$type: Type;