mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-12 14:31:28 +00:00
Initial static arrays of basic element types; Fixed member names in generic contexts
This commit is contained in:
9
std/portable.d.ts
vendored
9
std/portable.d.ts
vendored
@ -274,3 +274,12 @@ declare namespace console {
|
||||
/** @deprecated */
|
||||
function log(message: string): void;
|
||||
}
|
||||
|
||||
/** @deprecated */
|
||||
declare namespace Math {
|
||||
const LN2: number;
|
||||
function round(value: number): number;
|
||||
function floor(value: number): number;
|
||||
function log(value: number): number;
|
||||
function pow(value: number, exp: number): number;
|
||||
}
|
||||
|
Reference in New Issue
Block a user