Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion std/assembly/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1802,7 +1802,7 @@ declare class StaticArray<T> {
/** Class representing a sequence of characters. */
declare class String {
static fromCharCode(ls: i32, hs?: i32): string;
static fromCharCodes(arr: u16[]): string;
static fromCharCodes(arr: i32[]): string;
static fromCodePoint(code: i32): string;
static fromCodePoints(arr: i32[]): string;
static raw(parts: TemplateStringsArray, ...args: any[]): string;
Expand Down
2 changes: 1 addition & 1 deletion std/portable/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ declare const JSMath: typeof Math;

declare interface StringConstructor {
/** Equivalent to calling `String.fromCharCode` with multiple arguments. */
fromCharCodes(arr: u16[]): string;
fromCharCodes(arr: i32[]): string;
/** Equivalent to calling `String.fromCodePoint` with multiple arguments. */
fromCodePoints(arr: i32[]): string;
}
Expand Down