mnemonica 0.9.981 → 0.9.982

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.
Files changed (2) hide show
  1. package/build/index.d.ts +1 -1
  2. package/package.json +6 -6
package/build/index.d.ts CHANGED
@@ -31,7 +31,7 @@ interface IDefinitorInstance<N extends object, S> {
31
31
  interface IDefinitor<P extends object, SubTypeName extends string> {
32
32
  <PP extends object, T, M extends Proto<P, Proto<PP, T>>, S extends SN & M>(this: unknown, TypeName: SubTypeName, constructHandler: IDEF<T>, proto?: PP, config?: constructorOptions): IDefinitorInstance<M, S>;
33
33
  }
34
- export declare const define: <T, P extends object, N extends Proto<P, T>, S extends SN & N, R extends IDefinitorInstance<N, S>>(this: unknown, TypeName?: string, constructHandler?: IDEF<T> | undefined, proto?: P | undefined, config?: constructorOptions) => R;
34
+ export declare const define: <T, P extends object, N extends Proto<P, T>, S extends SN & N, R extends IDefinitorInstance<N, S>>(this: unknown, TypeName?: string, constructHandler?: IDEF<T>, proto?: P, config?: constructorOptions) => R;
35
35
  export declare const lookup: TypeLookup;
36
36
  export declare const apply: <E extends object, T extends object, S extends Proto<E, T>>(entity: E, Constructor: IDEF<T>, args?: unknown[]) => { [key in keyof S]: S[key]; };
37
37
  export declare const call: <E extends object, T extends object, S extends Proto<E, T>>(entity: E, Constructor: IDEF<T>, ...args: unknown[]) => { [key in keyof S]: S[key]; };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnemonica",
3
- "version": "0.9.981",
3
+ "version": "0.9.982",
4
4
  "description": "abstract technique that aids information retention : instance inheritance system",
5
5
  "type": "commonjs",
6
6
  "main": "./build/index.js",
@@ -64,26 +64,26 @@
64
64
  "homepage": "https://github.com/wentout/mnemonica#readme",
65
65
  "devDependencies": {
66
66
  "@types/jest": "^29.5.12",
67
- "@types/node": "^18.19.21",
67
+ "@types/node": "^18.19.30",
68
68
  "@typescript-eslint/eslint-plugin": "^5.62.0",
69
69
  "@typescript-eslint/parser": "^5.62.0",
70
70
  "chai": "^4.4.1",
71
71
  "eslint": "^8.57.0",
72
72
  "eslint-plugin-import": "^2.29.1",
73
- "eslint-plugin-mocha": "^10.3.0",
73
+ "eslint-plugin-mocha": "^10.4.1",
74
74
  "eslint-plugin-no-arrow-this": "^1.2.0",
75
75
  "husky": "^8.0.3",
76
76
  "jest": "^29.7.0",
77
77
  "json5": "^2.2.3",
78
78
  "lint-staged": "^13.3.0",
79
- "mocha": "^10.3.0",
79
+ "mocha": "^10.4.0",
80
80
  "mocha-lcov-reporter": "^1.3.0",
81
81
  "nyc": "^15.1.0",
82
82
  "ts-jest": "^29.1.2",
83
- "typescript": "^5.3.3"
83
+ "typescript": "^5.4.4"
84
84
  },
85
85
  "engines": {
86
- "node": ">=14"
86
+ "node": ">=16"
87
87
  },
88
88
  "husky": {
89
89
  "hooks": {