@nxtedition/lib 27.1.9 → 27.1.10
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/app.d.ts +1 -1
- package/package.json +2 -2
package/app.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export function makeApp<
|
|
|
10
10
|
Records extends Record<string, unknown> = Record<string, unknown>,
|
|
11
11
|
RpcMethods extends Record<string, RpcMethodDef> = Record<string, RpcMethodDef>,
|
|
12
12
|
Config = Record<string, unknown>,
|
|
13
|
-
>(appConfig: AppConfig<Config>, meta?: { url:
|
|
13
|
+
>(appConfig: AppConfig<Config>, meta?: { url: string }): App<Records, RpcMethods, Config>
|
|
14
14
|
|
|
15
15
|
export interface AppConfig<Config = Record<string, unknown>> {
|
|
16
16
|
name?: string
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nxtedition/lib",
|
|
3
|
-
"version": "27.1.
|
|
3
|
+
"version": "27.1.10",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": "Robert Nagy <robert.nagy@boffins.se>",
|
|
6
6
|
"type": "module",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"pino": ">=7.0.0",
|
|
93
93
|
"rxjs": "^7.0.0"
|
|
94
94
|
},
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "19ea4a1eeaf8c5a26b4e8d106168c1870c959939"
|
|
96
96
|
}
|