UNPKG

igniteui-react-core

Version:
23 lines (22 loc) 401 B
import { Type } from "./type"; /** * An enumeration for the different transaction types. */ export declare enum TransactionType { /** * An add transaction. */ Add = 0, /** * An update transaction. */ Update = 1, /** * A delete transaction. */ Delete = 2 } /** * @hidden */ export declare let TransactionType_$type: Type;