| 36 | const serviceMangerCache = {} as IHashMapGeneric<ServiceManager> |
| 37 | |
| 38 | interface QueuedPromise { |
| 39 | resolve: undefined | ((reason?: unknown) => void) |
| 40 | reject: undefined | ((reason?: any) => void) |
| 41 | promise: undefined | Promise<unknown> |
| 42 | } |
| 43 | |
| 44 | interface QueuedBuild { |
| 45 | appName: string |
nothing calls this directly
no outgoing calls
no test coverage detected