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

16 lines
328 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
* n
* @param str
* @param count
*/
export declare function repeat(str: string, count: number): string;
export declare function repeat(str: any, count: number): string;
declare module './ctor' {
interface XEUtilsMethods {
repeat: typeof repeat;
}
}
export default repeat