We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e7d3b4 commit 9483b34Copy full SHA for 9483b34
types/string.prototype.repeat/index.d.ts
@@ -1,3 +1,4 @@
1
declare module 'string.prototype.repeat' {
2
- export = typeof Function.call.bind(String.prototype.repeat);
+ function repeat(text: string, count: number): string;
3
+ export = repeat;
4
}
0 commit comments