Version: 3.0.03.0.13.0.2
export = repeating;
/**
* Repeat a string - fast
*
* @param count Times the 'string' should be repeated.
* @param str String to repeat. Default: ' '
*/
declare function repeating(count: number, str?: string): string;