UNPKG

simple-statistics

Version:
7 lines (5 loc) 167 B
/** * https://simple-statistics.github.io/docs/#shuffle */ declare function shuffle<T extends any[]>(x: T, randomSource?: () => number): T; export default shuffle;