| 9 | |
| 10 | type HTTPRequestPart = 'body' | 'query' | 'querystring' | 'params' | 'headers' |
| 11 | export interface RequestGenericInterface { |
| 12 | Body?: RequestBodyDefault; |
| 13 | Querystring?: RequestQuerystringDefault; |
| 14 | Params?: RequestParamsDefault; |
| 15 | Headers?: RequestHeadersDefault; |
| 16 | } |
| 17 | |
| 18 | export interface ValidationFunction { |
| 19 | (input: any): boolean |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…