onRouteHookHandler Type — fastify Architecture
Architecture documentation for the onRouteHookHandler type/interface in hooks.d.ts from the fastify codebase.
Entity Profile
Dependency Diagram
graph TD 904493a1_3f2a_960d_cfd2_8dcc74f682ac["onRouteHookHandler"] f0d1ac66_cb60_3d2a_ebcc_1faa11c21aad["hooks.d.ts"] 904493a1_3f2a_960d_cfd2_8dcc74f682ac -->|defined in| f0d1ac66_cb60_3d2a_ebcc_1faa11c21aad style 904493a1_3f2a_960d_cfd2_8dcc74f682ac fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
types/hooks.d.ts lines 683–697
export interface onRouteHookHandler<
RawServer extends RawServerBase = RawServerDefault,
RawRequest extends RawRequestDefaultExpression<RawServer> = RawRequestDefaultExpression<RawServer>,
RawReply extends RawReplyDefaultExpression<RawServer> = RawReplyDefaultExpression<RawServer>,
RouteGeneric extends RouteGenericInterface = RouteGenericInterface,
ContextConfig = ContextConfigDefault,
SchemaCompiler extends FastifySchema = FastifySchema,
TypeProvider extends FastifyTypeProvider = FastifyTypeProviderDefault,
Logger extends FastifyBaseLogger = FastifyBaseLogger
> {
(
this: FastifyInstance<RawServer, RawRequest, RawReply, Logger, TypeProvider>,
opts: RouteOptions<RawServer, RawRequest, RawReply, RouteGeneric, ContextConfig, SchemaCompiler, TypeProvider> & { routePath: string; path: string; prefix: string }
): Promise<unknown> | void;
}
Defined In
Source
Frequently Asked Questions
What is the onRouteHookHandler type?
onRouteHookHandler is a type/interface in the fastify codebase, defined in types/hooks.d.ts.
Where is onRouteHookHandler defined?
onRouteHookHandler is defined in types/hooks.d.ts at line 683.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free