@deboxsoft/module-core
Advanced tools
Comparing version 2.6.16 to 2.6.17
@@ -434,5 +434,7 @@ import { z, ZodType } from 'zod'; | ||
declare type Config<C = Record<string, any>> = C; | ||
interface ServerApiConfig { | ||
interface AppConfig { | ||
host: string; | ||
port: string; | ||
port: number; | ||
} | ||
interface ServerApiConfig extends AppConfig { | ||
apiPublicPath: string; | ||
@@ -443,6 +445,2 @@ apiSecurePath: string; | ||
} | ||
interface AppConfig { | ||
host: string; | ||
port: number; | ||
} | ||
declare type ConfigService = { | ||
@@ -449,0 +447,0 @@ getAll: () => Record<string, any>; |
{ | ||
"name": "@deboxsoft/module-core", | ||
"version": "2.6.16", | ||
"version": "2.6.17", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
71298
2119