mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
import aspectFit = require('aspect-fit');
|
|
|
|
aspectFit(10, 10, 200, 100).scale; // $ExpectType number
|
|
aspectFit(10, 10, 200, 100).width; // $ExpectType number
|
|
aspectFit(10, 10, 200, 100).height; // $ExpectType number
|
|
// @ts-expect-error
|
|
aspectFit(10, 10);
|