DefinitelyTyped/types/repeat-string/index.d.ts
2019-03-06 21:44:52 +11:00

12 lines
382 B
TypeScript

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