mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 13:27:15 +08:00
11 lines
425 B
TypeScript
11 lines
425 B
TypeScript
// Type definitions for GSAP v1.16.0
|
|
// Project: http://greensock.com/
|
|
// Definitions by: VILIC VANE <https://vilic.github.io/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare class Ease {
|
|
constructor(func?: Function, extraParams?: any[], type?: number, power?: number);
|
|
|
|
/** Translates the tween's progress ratio into the corresponding ease ratio. */
|
|
getRatio(p: number): number;
|
|
} |