mol_jsx_lib 0.0.237 → 0.0.239
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.d.ts +2 -2
- package/package.json +1 -1
- package/web.d.ts +2 -2
package/node.d.ts
CHANGED
|
@@ -88,8 +88,8 @@ declare namespace $ {
|
|
|
88
88
|
get $(): $;
|
|
89
89
|
set $(next: $);
|
|
90
90
|
static create<Instance>(this: new (init?: (instance: any) => void) => Instance, init?: (instance: $mol_type_writable<Instance>) => void): Instance;
|
|
91
|
-
static [Symbol.toPrimitive]():
|
|
92
|
-
static toString():
|
|
91
|
+
static [Symbol.toPrimitive](): unknown;
|
|
92
|
+
static toString(): unknown;
|
|
93
93
|
destructor(): void;
|
|
94
94
|
toString(): any;
|
|
95
95
|
toJSON(): any;
|
package/package.json
CHANGED
package/web.d.ts
CHANGED
|
@@ -119,8 +119,8 @@ declare namespace $ {
|
|
|
119
119
|
get $(): $;
|
|
120
120
|
set $(next: $);
|
|
121
121
|
static create<Instance>(this: new (init?: (instance: any) => void) => Instance, init?: (instance: $mol_type_writable<Instance>) => void): Instance;
|
|
122
|
-
static [Symbol.toPrimitive]():
|
|
123
|
-
static toString():
|
|
122
|
+
static [Symbol.toPrimitive](): unknown;
|
|
123
|
+
static toString(): unknown;
|
|
124
124
|
destructor(): void;
|
|
125
125
|
toString(): any;
|
|
126
126
|
toJSON(): any;
|