mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-13 12:22:53 +00:00
7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
import combinations = require('combinations');
|
|
|
|
const values = [1, false, 'foo'];
|
|
combinations(values);
|
|
combinations(values, 1);
|
|
combinations(values, 1, 10);
|