DefinitelyTyped/types/bin-pack/bin-pack-tests.ts
2018-06-03 18:21:31 -07:00

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 }
]);