徐总多门店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
365 B

5 months ago
/**
*
* @param array
* @param size
*/
export declare function chunk<T>(array: T[] | undefined, size: number): T[][];
declare module './ctor' {
interface XEUtilsMethods {
chunk: typeof chunk;
}
}
export default chunk