summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/fade-in-animation.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/fade-in-animation.d.ts')
-rw-r--r--chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/fade-in-animation.d.ts32
1 files changed, 32 insertions, 0 deletions
diff --git a/chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/fade-in-animation.d.ts b/chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/fade-in-animation.d.ts
new file mode 100644
index 00000000000..b261d804df0
--- /dev/null
+++ b/chromium/third_party/catapult/third_party/polymer2/bower_components/neon-animation/animations/fade-in-animation.d.ts
@@ -0,0 +1,32 @@
+/**
+ * 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/fade-in-animation.html
+ */
+
+/// <reference path="../../polymer/types/polymer.d.ts" />
+/// <reference path="../neon-animation-behavior.d.ts" />
+
+/**
+ * `<fade-in-animation>` animates the opacity of an element from 0 to 1.
+ *
+ * Configuration:
+ * ```
+ * {
+ * name: 'fade-in-animation',
+ * node: <node>
+ * timing: <animation-timing>
+ * }
+ * ```
+ */
+interface FadeInAnimationElement extends Polymer.Element, Polymer.NeonAnimationBehavior {
+ configure(config: any): any;
+}
+
+interface HTMLElementTagNameMap {
+ "fade-in-animation": FadeInAnimationElement;
+}