1 line
No EOL
1.1 KiB
Text
Executable file
1 line
No EOL
1.1 KiB
Text
Executable file
{"version":3,"file":"animation-controller.d.ts","sources":["animation-controller.d.ts"],"names":[],"mappings":"AAAA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["import { Animation } from '@ionic/core';\nexport declare class AnimationController {\n /**\n * Create a new animation\n */\n create(animationId?: string): Animation;\n /**\n * EXPERIMENTAL\n *\n * Given a progression and a cubic bezier function,\n * this utility returns the time value(s) at which the\n * cubic bezier reaches the given time progression.\n *\n * If the cubic bezier never reaches the progression\n * the result will be an empty array.\n *\n * This is most useful for switching between easing curves\n * when doing a gesture animation (i.e. going from linear easing\n * during a drag, to another easing when `progressEnd` is called)\n */\n easingTime(p0: number[], p1: number[], p2: number[], p3: number[], progression: number): number[];\n}\n"]} |