Initial static arrays of basic element types; Fixed member names in generic contexts

This commit is contained in:
dcodeIO
2018-03-20 23:41:37 +01:00
parent 2c0ddf4f80
commit be66abbd78
25 changed files with 6444 additions and 283 deletions

9
std/portable.d.ts vendored
View File

@ -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;
}