mol_wire_lib 1.0.1070 → 1.0.1071

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 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;
@@ -385,9 +385,9 @@ declare namespace $ {
385
385
  declare namespace $ {
386
386
  function $mol_wire_method<Host extends object, Args extends readonly any[]>(host: Host, field: PropertyKey, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
387
387
  value: (this: Host, ...args: Args) => any;
388
- enumerable?: boolean | undefined;
389
- configurable?: boolean | undefined;
390
- writable?: boolean | undefined;
388
+ enumerable?: boolean;
389
+ configurable?: boolean;
390
+ writable?: boolean;
391
391
  get?: (() => (...args: Args) => any) | undefined;
392
392
  set?: ((value: (...args: Args) => any) => void) | undefined;
393
393
  };
@@ -474,9 +474,9 @@ declare namespace $ {
474
474
  declare namespace $ {
475
475
  function $mol_wire_plex<Args extends [any, ...any[]]>(host: object, field: string, descr?: TypedPropertyDescriptor<(...args: Args) => any>): {
476
476
  value: (this: typeof host, ...args: Args) => any;
477
- enumerable?: boolean | undefined;
478
- configurable?: boolean | undefined;
479
- writable?: boolean | undefined;
477
+ enumerable?: boolean;
478
+ configurable?: boolean;
479
+ writable?: boolean;
480
480
  get?: (() => (...args: Args) => any) | undefined;
481
481
  set?: ((value: (...args: Args) => any) => void) | undefined;
482
482
  };