declare module "@extra-array/permutations" { /** * Lists all possible permutations. * @param x an array * @param n number of values (-1 => any) */ declare function permutations(x: T[], n?: number): IterableIterator; export = permutations; //# sourceMappingURL=permutations.d.ts.map}