Files

16 lines
328 B
TypeScript
Raw Permalink 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