UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

22 lines (21 loc) 570 B
import { Base, Type } from "./type"; import { TransactionType } from "./TransactionType"; /** * @hidden */ export declare class TransactionState extends Base { static $t: Type; private _id; get id(): any; set id(a: any); private _transactionType; get transactionType(): TransactionType; set transactionType(a: TransactionType); private _value; get value(): any; set value(a: any); private _version; get version(): any; set version(a: any); constructor(a: any, b: TransactionType, c: any); }