mol_plot_all 1.2.1274 → 1.2.1275

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
@@ -497,7 +497,7 @@ declare namespace $ {
497
497
  class $mol_error_mix<Cause extends {} = {}> extends AggregateError {
498
498
  readonly cause: Cause;
499
499
  name: string;
500
- constructor(message: string, cause?: Cause, ...errors: Error[]);
500
+ constructor(message: string, cause?: Cause, ...errors: readonly Error[]);
501
501
  static [Symbol.toPrimitive](): string;
502
502
  static toString(): string;
503
503
  static make(...params: ConstructorParameters<typeof $mol_error_mix>): $mol_error_mix<{}>;