@putkoff/abstract-utilities 0.1.172 → 0.1.173

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,8 +1,8 @@
1
- import type { AppConfig } from './../imports';
1
+ import type { AppConfig } from "./../imports";
2
2
  export declare function loadConfig(filePath?: string | null): Promise<AppConfig>;
3
3
  /**
4
- * getConfig(): load the full AppConfig
5
- * getConfig(key): load just that key
4
+ * getConfig(): Promise<AppConfig>
5
+ * getConfig(key): Promise<AppConfig[K]>
6
6
  */
7
7
  export declare function getConfig(): Promise<AppConfig>;
8
8
  export declare function getConfig<K extends keyof AppConfig>(key: K): Promise<AppConfig[K]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putkoff/abstract-utilities",
3
- "version": "0.1.172",
3
+ "version": "0.1.173",
4
4
  "type": "module",
5
5
  "description": "A reusable React Login component with JWT authentication",
6
6
  "main": "dist/cjs/index.js",