2017-02-28 20:49:37 -05:00
|
|
|
/** @experimental */
|
|
|
|
export declare abstract class AnimationDriver {
|
|
|
|
abstract animate(element: any, keyframes: {
|
|
|
|
[key: string]: string | number;
|
2017-03-24 12:56:34 -04:00
|
|
|
}[], duration: number, delay: number, easing?: string | null, previousPlayers?: any[]): any;
|
2017-02-28 20:49:37 -05:00
|
|
|
static NOOP: AnimationDriver;
|
|
|
|
}
|