MCPcopy
hub / github.com/fastify/fastify / RequestGenericInterface

Interface RequestGenericInterface

types/request.d.ts:11–16  ·  types/request.d.ts::RequestGenericInterface

Source from the content-addressed store, hash-verified

9
10type HTTPRequestPart = class="st">'body' | class="st">'query' | class="st">'querystring' | class="st">'params' | class="st">'headers'
11export interface RequestGenericInterface {
12 Body?: RequestBodyDefault;
13 Querystring?: RequestQuerystringDefault;
14 Params?: RequestParamsDefault;
15 Headers?: RequestHeadersDefault;
16}
17
18export interface ValidationFunction {
19 (input: any): boolean

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected