mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-07 13:15:59 +08:00
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
/// <reference path="bezier-easing.d.ts" />
|
|
|
|
function get_easing() {
|
|
let easing: Easing = BezierEasing(0, 0, 1, 0.5);
|
|
}
|
|
|
|
function use_easing() {
|
|
let easing: Easing = BezierEasing(0, 0, 1, 0.5);
|
|
let eased: number = easing(1);
|
|
} |