mol_wire_lib 1.0.1070 → 1.0.1072

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_wire_lib",
3
- "version": "1.0.1070",
3
+ "version": "1.0.1072",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.d.ts CHANGED
@@ -62,7 +62,7 @@ declare namespace $ {
62
62
  declare namespace $ {
63
63
  let $mol_wire_auto_sub: $mol_wire_sub | null;
64
64
  function $mol_wire_auto(next?: $mol_wire_sub | null): $mol_wire_sub | null;
65
- const $mol_wire_affected: (number | $mol_wire_sub)[];
65
+ const $mol_wire_affected: ($mol_wire_sub | number)[];
66
66
  }
67
67
 
68
68
  declare namespace $ {
@@ -154,9 +154,9 @@ declare namespace $ {
154
154
 
155
155
  declare namespace $ {
156
156
  class $mol_object2 {
157
- static $: typeof $$;
157
+ static $: $;
158
158
  [Symbol.toStringTag]: string;
159
- [$mol_ambient_ref]: typeof $$;
159
+ [$mol_ambient_ref]: $;
160
160
  get $(): $;
161
161
  set $(next: $);
162
162
  static create<Instance>(this: new (init?: (instance: any) => void) => Instance, init?: (instance: $mol_type_writable<Instance>) => void): Instance;
@@ -286,9 +286,9 @@ declare namespace $ {
286
286
  declare namespace $ {
287
287
  function $mol_wire_method<Host extends object, Args extends readonly any[]>(host: Host, field: PropertyKey, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
288
288
  value: (this: Host, ...args: Args) => any;
289
- enumerable?: boolean | undefined;
290
- configurable?: boolean | undefined;
291
- writable?: boolean | undefined;
289
+ enumerable?: boolean;
290
+ configurable?: boolean;
291
+ writable?: boolean;
292
292
  get?: (() => (...args: Args) => any) | undefined;
293
293
  set?: ((value: (...args: Args) => any) => void) | undefined;
294
294
  };
@@ -375,9 +375,9 @@ declare namespace $ {
375
375
  declare namespace $ {
376
376
  function $mol_wire_plex<Args extends [any, ...any[]]>(host: object, field: string, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
377
377
  value: (this: typeof host, ...args: Args) => any;
378
- enumerable?: boolean | undefined;
379
- configurable?: boolean | undefined;
380
- writable?: boolean | undefined;
378
+ enumerable?: boolean;
379
+ configurable?: boolean;
380
+ writable?: boolean;
381
381
  get?: (() => (...args: Args) => any) | undefined;
382
382
  set?: ((value: (...args: Args) => any) => void) | undefined;
383
383
  };