mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 11:51:10 +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);
|
|
} |