@domain.js/main 0.2.4 → 0.2.5

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,6 +1,6 @@
1
1
  import { Schema } from "ajv";
2
2
  interface Cnf {
3
- [propName: string]: string;
3
+ [propName: string]: string | undefined;
4
4
  }
5
- export declare function Main(object: Cnf, schema: Schema): (key: string) => string;
5
+ export declare function Main(object: Cnf, schema: Schema): (key: string) => string | undefined;
6
6
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domain.js/main",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "DDD framework",
5
5
  "main": "dist/index.js",
6
6
  "bin": {