UNPKG

simple-statistics

Version:
7 lines (5 loc) 174 B
/** * https://simple-statistics.github.io/docs/#permutationsheap */ declare function permutationsHeap<T extends any[]>(elements: T): T[]; export default permutationsHeap;