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-04-26 13:44:28 -04:00
|
|
|
abstract computeStyle(element: any, prop: string, defaultValue?: string): string;
|
2017-02-28 20:49:37 -05:00
|
|
|
static NOOP: AnimationDriver;
|
|
|
|
}
|