mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
// Type definitions for mess 0.1.2
|
|
// Project: https://github.com/bobrik/node-mess
|
|
// Definitions by: Wim Looman <https://github.com/Nemo157>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module "mess" {
|
|
function shuffle<T>(array: T[]): T[];
|
|
export = shuffle;
|
|
}
|