UNPKG

@daysnap/utils

Version:
8 lines (6 loc) 186 B
/** * list 生成器,快速生成数据 * @param length 个数 */ declare function listGenerator<T = any>(length: number, fn: (index: number) => T): T[]; export { listGenerator };