@h3ravel/config 1.4.0 → 1.4.1

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/dist/index.d.cts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference path="./app.globals.d.ts" />
1
2
  import { DotNestedKeys, DotNestedValue, PathLoader } from "@h3ravel/shared";
2
3
 
3
4
  //#region ../core/dist/index.d.ts
@@ -116,6 +117,16 @@ declare var Application: {
116
117
  */
117
118
  has(key: any): boolean;
118
119
  };
120
+ versions: {
121
+ app: string;
122
+ ts: string;
123
+ };
124
+ /**
125
+ * Returns the installed version of the system core and typescript.
126
+ *
127
+ * @returns
128
+ */
129
+ getVersion(key: any): any;
119
130
  /**
120
131
  * Check if the target has any decorators
121
132
  *
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference path="./app.globals.d.ts" />
1
2
  import { DotNestedKeys, DotNestedValue, PathLoader } from "@h3ravel/shared";
2
3
 
3
4
  //#region ../core/dist/index.d.ts
@@ -116,6 +117,16 @@ declare var Application: {
116
117
  */
117
118
  has(key: any): boolean;
118
119
  };
120
+ versions: {
121
+ app: string;
122
+ ts: string;
123
+ };
124
+ /**
125
+ * Returns the installed version of the system core and typescript.
126
+ *
127
+ * @returns
128
+ */
129
+ getVersion(key: any): any;
119
130
  /**
120
131
  * Check if the target has any decorators
121
132
  *