mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-28 17:35:49 +08:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import * as weight from "pick-weight";
|
|
|
|
const x = weight(["a", "b", "c"], [1, 2, 3]);
|
|
|
|
// Can only be applied since inferred type is string
|
|
x === "string";
|