mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 15:12:12 +00:00
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
/// <reference path="../assembly.d.ts" />
|
|
|
|
declare class String {
|
|
readonly length: i32;
|
|
constructor(length: i32);
|
|
static fromCharCode(c1: i32, c2?: i32);
|
|
static equals(a: string, b: string): bool;
|
|
static concat(a: string, b: string): string;
|
|
charCodeAt(index: i32): u16;
|
|
concat(other: string): string;
|
|
}
|