summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/slide-from-top-animation.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/slide-from-top-animation.d.ts')
-rw-r--r--chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/slide-from-top-animation.d.ts34
1 files changed, 34 insertions, 0 deletions
diff --git a/chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/slide-from-top-animation.d.ts b/chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/slide-from-top-animation.d.ts
new file mode 100644
index 00000000000..7e5d47142e5
--- /dev/null
+++ b/chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/slide-from-top-animation.d.ts
@@ -0,0 +1,34 @@
+/**
+ * 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/slide-from-top-animation.html
+ */
+
+/// <reference path="../../polymer/types/polymer.d.ts" />
+/// <reference path="../neon-animation-behavior.d.ts" />
+
+/**
+ * `<slide-from-top-animation>` animates the transform of an element from `translateY(-100%)` to
+ * `none`. The `transformOrigin` defaults to `50% 0`.
+ *
+ * Configuration:
+ * ```
+ * {
+ * name: 'slide-from-top-animation',
+ * node: <node>,
+ * transformOrigin: <transform-origin>,
+ * timing: <animation-timing>
+ * }
+ * ```
+ */
+interface SlideFromTopAnimationElement extends Polymer.Element, Polymer.NeonAnimationBehavior {
+ configure(config: any): any;
+}
+
+interface HTMLElementTagNameMap {
+ "slide-from-top-animation": SlideFromTopAnimationElement;
+}