mnemonica 0.9.974 → 0.9.975

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.
@@ -1,7 +1,7 @@
1
1
  export type IDEF<T> = {
2
- new (...args: unknown[]): T;
2
+ new (): T;
3
3
  } | {
4
- (this: T, ...args: unknown[]): void;
4
+ (this: T, ...args: any[]): void;
5
5
  };
6
6
  export interface ConstructorFunction<ConstructorInstance extends object> {
7
7
  new (...args: unknown[]): ConstructorInstance;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnemonica",
3
- "version": "0.9.974",
3
+ "version": "0.9.975",
4
4
  "description": "abstract technique that aids information retention : instance inheritance system",
5
5
  "type": "commonjs",
6
6
  "main": "./build/index.js",