Skip to content

Commit 7297145

Browse files
committed
Fix types for string.prototype.repeat
1 parent 9a35599 commit 7297145

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
declare module 'string.prototype.repeat' {
2-
export = typeof Function.call.bind(String.prototype.repeat);
2+
function repeat(text: string, count: number): string;
3+
export = repeat;
34
}

0 commit comments

Comments
 (0)