//#region src/string/repeat.d.ts /** * Repeats the given string n times. * * @param str - The string to repeat * @param n - The number of times to repeat the string * @returns The repeated string * * @example * repeat('*', 3) // => '***' * repeat('abc', 2) // => 'abcabc' * repeat('abc', 0) // => '' */ declare function repeat(str: string, n: number): string; //#endregion export { repeat }; //# sourceMappingURL=repeat.d.cts.map