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 +1 -1
- package/node.deps.json +1 -1
- package/node.js +23 -4
- package/node.js.map +1 -1
- package/node.mjs +23 -4
- package/node.test.js +23 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
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<{}>;
|