File tree 1 file changed +5
-1
lines changed 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;
1320
1320
declare type nonnull < T > = NonNullable < T > ;
1321
1321
1322
1322
/** Pseudo-class representing the backing class of integer types. */
1323
+ /** @internal */
1323
1324
declare class _Integer {
1324
1325
/** Smallest representable value. */
1325
1326
static readonly MIN_VALUE : number ;
@@ -1332,6 +1333,7 @@ declare class _Integer {
1332
1333
}
1333
1334
1334
1335
/** Pseudo-class representing the backing class of floating-point types. */
1336
+ /** @internal */
1335
1337
declare class _Float {
1336
1338
/** Difference between 1 and the smallest representable value greater than 1. */
1337
1339
static readonly EPSILON : f32 | f64 ;
@@ -1555,7 +1557,7 @@ interface ArrayBufferView {
1555
1557
readonly dataStart : usize ;
1556
1558
}
1557
1559
1558
- /* @internal */
1560
+ /** @internal */
1559
1561
declare abstract class TypedArray < T > implements ArrayBufferView {
1560
1562
[ key : number ] : T ;
1561
1563
/** Number of bytes per element. */
@@ -1963,6 +1965,7 @@ interface SymbolConstructor {
1963
1965
1964
1966
declare const Symbol : SymbolConstructor ;
1965
1967
1968
+ /** @internal */
1966
1969
interface IMath < T > {
1967
1970
/** The base of natural logarithms, e, approximately 2.718. */
1968
1971
readonly E : T ;
@@ -2054,6 +2057,7 @@ interface IMath<T> {
2054
2057
trunc ( x : T ) : T ;
2055
2058
}
2056
2059
2060
+ /** @internal */
2057
2061
interface INativeMath < T > extends IMath < T > {
2058
2062
/** Contains sin value produced after Math/Mathf.sincos */
2059
2063
sincos_sin : T ;
You can’t perform that action at this time.
0 commit comments