(req: Request, res: Response, next: NextFunction)
| 63 | |
| 64 | export interface IDinoController { |
| 65 | patch(req: Request, res: Response, next: NextFunction): void; |
| 66 | invoke(actionName: string, httpVerb: string, requestUrl: string): void; |
| 67 | invokeAsync(actionName: string, httpVerb: string, requestUrl: string): Promise<void>; |
| 68 | } |
no outgoing calls
no test coverage detected