| 23 | } |
| 24 | |
| 25 | export interface IAppContainer { |
| 26 | controllers: Function[]; |
| 27 | baseUri: string; |
| 28 | startMiddleware: Function[]; |
| 29 | endMiddleware: Function[]; |
| 30 | appStartMiddleware: Function[]; |
| 31 | diContainer: any; |
| 32 | diResolveCallback: any; |
| 33 | errorController: Function; |
| 34 | errorMiddleware: Function[]; |
| 35 | routeNotFoundMiddleware: Function; |
| 36 | raiseModelError: boolean; |
| 37 | enableTaskContext: boolean; |
| 38 | useRouter: IRouterCallBack; |
| 39 | build(): void; |
| 40 | } |
| 41 | |
| 42 | export interface IDIContainer { |
| 43 | resolve<T>(type: any): T; |
no outgoing calls
no test coverage detected