Add Mathf missed defs (#60)

This commit is contained in:
Max Graey 2018-03-31 18:15:59 +03:00 committed by Daniel Wirtz
parent 72063577f3
commit 3d1f181961
2 changed files with 3 additions and 0 deletions

2
std/assembly.d.ts vendored
View File

@ -463,6 +463,8 @@ declare const NativeMath: INativeMath<f64>;
declare const NativeMathf: INativeMath<f32>;
/** Alias of {@link NativeMath} or {@link JSMath} respectively. Defaults to `NativeMath`. */
declare const Math: IMath<f64>;
/** Alias of {@link NativeMathf} or {@link JSMath} respectively. Defaults to `NativeMathf`. */
declare const Mathf: IMath<f32>;
// Internal decorators

1
std/portable.d.ts vendored
View File

@ -365,6 +365,7 @@ interface IMath {
}
declare const Math: IMath;
declare const Mathf: IMath;
declare const JSMath: IMath;
declare namespace console {