Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/copyWithin.d.ts

24 lines
825 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
* ,
* @param array
* @param target
*/
export declare function copyWithin<T>(array: T[], target: number): T[];
/**
* ,
* @param array
* @param target
* @param start 0
* @param end
*/
export declare function copyWithin<T>(array: T[], target: number, start: Number, end?: number): T[];
declare module './ctor' {
interface XEUtilsMethods {
copyWithin: typeof copyWithin;
}
}
export default copyWithin