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