// Type definitions for repeat-string 1.6 // Project: https://github.com/jonschlinkert/repeat-string // Definitions by: Adam Zerella // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /** * Repeat the given `string` the specified `number` of times. */ declare function repeat(str: string, num?: number | null): string; export = repeat;