(actionName: string, httpVerb: string, requestUrl: string)
| 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 | } |
| 69 |
no outgoing calls
no test coverage detected