/**
* DO NOT EDIT
*
* This file was automatically generated by
* https://github.com/Polymer/gen-typescript-declarations
*
* To modify these typings, edit the source file(s):
* animations/transform-animation.html
*/
///
///
/**
* `` animates a custom transform on an element. Use this to animate multiple
* transform properties, or to apply a custom transform value.
*
* Configuration:
* ```
* {
* name: 'transform-animation',
* node: ,
* transformOrigin: ,
* transformFrom: ,
* transformTo: ,
* timing:
* }
* ```
*/
interface TransformAnimationElement extends Polymer.Element, Polymer.NeonAnimationBehavior {
configure(config: {node: Element, transformOrigin?: string, transformFrom?: string, transformTo?: string, timing?: object|null}): any;
}
interface HTMLElementTagNameMap {
"transform-animation": TransformAnimationElement;
}