UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

14 lines (13 loc) 277 B
import { Type } from "./type"; /** * @hidden */ export interface ITickProvider { setupTicking(a: () => void): number; requestFrame(a: number): void; teardownTicking(a: number): void; } /** * @hidden */ export declare let ITickProvider_$type: Type;