/** * 生成重复字符串 * @param str 需要重复的字符串 * @param n 重复次数 * @returns */ declare function repeat(str: string, n: number): string; export default repeat;