@nxtedition/lib 23.0.9 → 23.0.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.
Files changed (2) hide show
  1. package/app.d.ts +4 -4
  2. package/package.json +1 -1
package/app.d.ts CHANGED
@@ -4,6 +4,7 @@ import type { Logger } from './logger.js'
4
4
  import type { CouchClient } from './couch.js'
5
5
  import type { Server } from 'http'
6
6
  import type { BehaviorSubject } from 'rxjs'
7
+ import type { Subscription } from 'rxjs'
7
8
 
8
9
  export function makeApp<Records, RpcMethods, Config = Record<string, unknown>>(
9
10
  appConfig: AppConfig<Config>,
@@ -23,14 +24,13 @@ export interface App<Records, RpcMethods, Config = Record<string, unknown>> {
23
24
  nxt: NxtDeepstreamClient<Records, RpcMethods>
24
25
  couch: CouchClient
25
26
  server: Server
26
- compiler: unkonwn
27
+ compiler: unknown // TODO: type
27
28
  config: Config
28
29
  logger: Logger
29
- trace: unknown
30
- trace: unknown
30
+ trace: unknown // TODO: type
31
31
  toobusy: TooBusy
32
32
  destroyers: Array<
33
- | rxjs.Subscription
33
+ | Subscription
34
34
  | ((logger: Logger) => void)
35
35
  | ((logger: Logger) => Promise<void>)
36
36
  | Disposable
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "23.0.9",
3
+ "version": "23.0.10",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",