Files

14 lines
256 B
TypeScript
Raw Permalink Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @param list
*/
export declare function shuffle<T>(list: T[]): T[];
declare module './ctor' {
interface XEUtilsMethods {
shuffle: typeof shuffle;
}
}
export default shuffle