UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

21 lines (20 loc) 540 B
import { Base, Type } from "./type"; import { TransactionType } from "./TransactionType"; /** * @hidden */ export declare class DataSourceAggregatedResult extends Base { static $t: Type; private _item; get item(): any; set item(a: any); private _transactionType; get transactionType(): TransactionType; set transactionType(a: TransactionType); private _keys; get keys(): string[]; set keys(a: string[]); private _values; get values(): any[]; set values(a: any[]); }