mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-18 20:37:14 +08:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import * as pack from "bin-pack";
|
|
|
|
// $ExpectType PackResult<{ width: number; height: number; }>
|
|
const packResult = pack([
|
|
{ width: 50, height: 50 },
|
|
{ width: 25, height: 25 },
|
|
{ width: 25, height: 20 }
|
|
]);
|