mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
11 lines
361 B
TypeScript
11 lines
361 B
TypeScript
// Type definitions for bezier-easing
|
|
// Project: https://github.com/gre/bezier-easing
|
|
// Definitions by: brian ridley <https://github.com/ptlis/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare interface Easing {
|
|
(x: number): number;
|
|
}
|
|
|
|
declare function BezierEasing(mX1: number, mY1: number, mX2: number, mY2: number): Easing;
|