phaser/v3/typings/math/easing/Elastic.d.ts

4 lines
223 B
TypeScript
Raw Normal View History

2017-01-16 21:43:07 +00:00
export declare function In(v: any, amplitude: any, period: any): number;
export declare function Out(v: any, amplitude: any, period: any): number;
export declare function InOut(v: any, amplitude: any, period: any): number;