File tree 2 files changed +2
-2
lines changed
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> {
1802
1802
/** Class representing a sequence of characters. */
1803
1803
declare class String {
1804
1804
static fromCharCode ( ls : i32 , hs ?: i32 ) : string ;
1805
- static fromCharCodes ( arr : u16 [ ] ) : string ;
1805
+ static fromCharCodes ( arr : i32 [ ] ) : string ;
1806
1806
static fromCodePoint ( code : i32 ) : string ;
1807
1807
static fromCodePoints ( arr : i32 [ ] ) : string ;
1808
1808
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;
309
309
310
310
declare interface StringConstructor {
311
311
/** Equivalent to calling `String.fromCharCode` with multiple arguments. */
312
- fromCharCodes ( arr : u16 [ ] ) : string ;
312
+ fromCharCodes ( arr : i32 [ ] ) : string ;
313
313
/** Equivalent to calling `String.fromCodePoint` with multiple arguments. */
314
314
fromCodePoints ( arr : i32 [ ] ) : string ;
315
315
}
You can’t perform that action at this time.
0 commit comments