File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1802,7 +1802,7 @@ declare class StaticArray<T> {
18021802/** Class representing a sequence of characters. */
18031803declare class String {
18041804 static fromCharCode ( ls : i32 , hs ?: i32 ) : string ;
1805- static fromCharCodes ( arr : u16 [ ] ) : string ;
1805+ static fromCharCodes ( arr : i32 [ ] ) : string ;
18061806 static fromCodePoint ( code : i32 ) : string ;
18071807 static fromCodePoints ( arr : i32 [ ] ) : string ;
18081808 static raw ( parts : TemplateStringsArray , ...args : any [ ] ) : string ;
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ declare const JSMath: typeof Math;
309309
310310declare interface StringConstructor {
311311 /** Equivalent to calling `String.fromCharCode` with multiple arguments. */
312- fromCharCodes ( arr : u16 [ ] ) : string ;
312+ fromCharCodes ( arr : i32 [ ] ) : string ;
313313 /** Equivalent to calling `String.fromCodePoint` with multiple arguments. */
314314 fromCodePoints ( arr : i32 [ ] ) : string ;
315315}
You can’t perform that action at this time.
0 commit comments