File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1501,6 +1501,8 @@ The **return value** is a `boolean` indicating whether or not the `value` is `un
15011501
15021502### BigIntObject
15031503
1504+ The object to create [ ` BigInt ` ] [ bigint ] object by assign value to ` set ` property.
1505+
15041506``` typescript
15051507class BigIntObject {
15061508 static set set(value : any ) {
@@ -1516,6 +1518,8 @@ class BigIntObject {
15161518
15171519### BooleanObject
15181520
1521+ The object to create [ ` Boolean ` ] [ boolean ] object by assign value to ` set ` property.
1522+
15191523``` typescript
15201524class BooleanObject {
15211525 /**
@@ -1535,6 +1539,8 @@ class BooleanObject {
15351539
15361540### NumberObject
15371541
1542+ The object to create [ ` Number ` ] [ number ] object by assign value to ` set ` property.
1543+
15381544``` typescript
15391545class NumberObject {
15401546 static set set(value : any ) {
@@ -1550,6 +1556,8 @@ class NumberObject {
15501556
15511557### PrimitiveObject
15521558
1559+ The object to store static primitive objects.
1560+
15531561``` typescript
15541562class PrimitiveObject {
15551563 static bigint: BigInt ;
@@ -1564,6 +1572,8 @@ class PrimitiveObject {
15641572
15651573### StringObject
15661574
1575+ The object to create [ ` String ` ] [ string ] object by assign value to ` set ` property.
1576+
15671577``` typescript
15681578class StringObject {
15691579 static set set(value : any ) {
@@ -1579,6 +1589,8 @@ class StringObject {
15791589
15801590### SymbolObject
15811591
1592+ The object to create [ ` Symbol ` ] [ symbol ] object by assign value to ` set ` property.
1593+
15821594``` typescript
15831595class SymbolObject {
15841596 static set set(value : string | number | undefined ) {
You can’t perform that action at this time.
0 commit comments