File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1320,6 +1320,7 @@ declare type NonNullable<T> = T extends null | undefined ? never : T;
13201320declare type nonnull < T > = NonNullable < T > ;
13211321
13221322/** Pseudo-class representing the backing class of integer types. */
1323+ /** @internal */
13231324declare class _Integer {
13241325 /** Smallest representable value. */
13251326 static readonly MIN_VALUE : number ;
@@ -1332,6 +1333,7 @@ declare class _Integer {
13321333}
13331334
13341335/** Pseudo-class representing the backing class of floating-point types. */
1336+ /** @internal */
13351337declare class _Float {
13361338 /** Difference between 1 and the smallest representable value greater than 1. */
13371339 static readonly EPSILON : f32 | f64 ;
@@ -1555,7 +1557,7 @@ interface ArrayBufferView {
15551557 readonly dataStart : usize ;
15561558}
15571559
1558- /* @internal */
1560+ /** @internal */
15591561declare abstract class TypedArray < T > implements ArrayBufferView {
15601562 [ key : number ] : T ;
15611563 /** Number of bytes per element. */
@@ -1963,6 +1965,7 @@ interface SymbolConstructor {
19631965
19641966declare const Symbol : SymbolConstructor ;
19651967
1968+ /** @internal */
19661969interface IMath < T > {
19671970 /** The base of natural logarithms, e, approximately 2.718. */
19681971 readonly E : T ;
@@ -2054,6 +2057,7 @@ interface IMath<T> {
20542057 trunc ( x : T ) : T ;
20552058}
20562059
2060+ /** @internal */
20572061interface INativeMath < T > extends IMath < T > {
20582062 /** Contains sin value produced after Math/Mathf.sincos */
20592063 sincos_sin : T ;
You can’t perform that action at this time.
0 commit comments