mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
|
|
|
|
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);
|
|
} |