UNPKG

144 BTypeScriptView Raw
1declare module 'knuth-shuffle' {
2 /** Does an in-place shuffle of the given array. */
3 export function knuthShuffle(arr: Array<any>): void;
4}