| 12 | | Function; |
| 13 | |
| 14 | export interface IocContainer { |
| 15 | get<T>(controller: ServiceIdentifier<T>): T; |
| 16 | get<T>(controller: ServiceIdentifier<T>): Promise<T>; |
| 17 | } |
| 18 | |
| 19 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 20 | export type IocContainerFactory<T = any> = (request: T) => IocContainer; |
no outgoing calls
no test coverage detected