mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
7 lines
290 B
TypeScript
7 lines
290 B
TypeScript
/** @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;
|
|
}
|