| 8 | } from '../types'; |
| 9 | |
| 10 | export interface IDino { |
| 11 | registerController<T>(controller: Function & { prototype: T }): void; |
| 12 | registerApplicationError<T>(type: Function & { prototype: T }): void; |
| 13 | disableRouteNotFoundException(): void; |
| 14 | enableUserIdentity(): void; |
| 15 | requestStart<T>(middleware: Function & { prototype: T }): void; |
| 16 | requestEnd<T>(middleware: Function & { prototype: T }): void; |
| 17 | serverError<T>(middleware: Function & { prototype: T }): void; |
| 18 | applicationStart<T>(middleware: Function & { prototype: T }): void; |
| 19 | dependencyResolver<T>( |
| 20 | injector: T, cb: (injector: T, type: any) => any): void; |
| 21 | bind(): void; |
| 22 | useRouter(cb: () => any): void; |
| 23 | } |
| 24 | |
| 25 | export interface IAppContainer { |
| 26 | controllers: Function[]; |
no outgoing calls
no test coverage detected