UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

15 lines (14 loc) 406 B
import { Base, Type } from "./type"; import { AsyncVirtualDataTask } from "./AsyncVirtualDataTask"; /** * @hidden */ export declare class AsyncVirtualDataTaskCompletionSource<T> extends Base { static $t: Type; protected $t: Type; constructor($t: Type); private _task; get task(): AsyncVirtualDataTask; set task(a: AsyncVirtualDataTask); setResult(a: T): void; }