UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

16 lines (15 loc) 386 B
import { Type } from "./type"; /** * @hidden */ export interface IExecutionContext { execute(a: () => void): void; enqueueAction(a: () => void): void; enqueueAnimationAction(a: () => void): void; executeDelayed(a: () => void, b: number): void; getCurrentRelativeTime(): number; } /** * @hidden */ export declare let IExecutionContext_$type: Type;