| 9 | |
| 10 | type HTTPRequestPart = class="st">'body' | class="st">'query' | class="st">'querystring' | class="st">'params' | class="st">'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