NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/array/copyWithin.d.ts

26 lines
1.0 KiB
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { XEUtilsMethods } from '../xe-utils'
/**
* ,
* @param array
* @param target
* @param start 0
* @param end
*/
export declare function copyWithin(array: Array<any>, target: number, start?: Number, end?: number): Array<any>;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* ,
* @param array
* @param target
* @param start 0
* @param end
*/
copyWithin: typeof copyWithin;
}
}
export default copyWithin