angular-docs-cn/tools/public_api_guard/animations/browser.d.ts

8 lines
290 B
TypeScript
Raw Normal View History

/** @experimental */
export declare abstract class AnimationDriver {
abstract animate(element: any, keyframes: {
[key: string]: string | number;
}[], duration: number, delay: number, easing?: string | null, previousPlayers?: any[]): any;
static NOOP: AnimationDriver;
}