UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

14 lines (13 loc) 317 B
import { Type } from "./type"; /** * @hidden */ export interface IDataSourceExecutionContext { execute(a: () => void): void; enqueueAction(a: () => void): void; executeDelayed(a: () => void, b: number): void; } /** * @hidden */ export declare let IDataSourceExecutionContext_$type: Type;