Skip to content

Commit

Permalink
docs: belonging categories
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Sep 7, 2023
1 parent 4247fec commit 893c103
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/use/express.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface RequestContext {
}

/**
* @category Server/fetch
* @category Server/express
*/
export type HandlerOptions<Context extends OperationContext = undefined> =
RawHandlerOptions<Request, RequestContext, Context>;
Expand Down
2 changes: 1 addition & 1 deletion src/use/fastify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface RequestContext {
}

/**
* @category Server/fetch
* @category Server/fastify
*/
export type HandlerOptions<Context extends OperationContext = undefined> =
RawHandlerOptions<FastifyRequest, RequestContext, Context>;
Expand Down
2 changes: 1 addition & 1 deletion src/use/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface RequestContext {
}

/**
* @category Server/fetch
* @category Server/http
*/
export type HandlerOptions<Context extends OperationContext = undefined> =
RawHandlerOptions<IncomingMessage, RequestContext, Context>;
Expand Down
2 changes: 1 addition & 1 deletion src/use/http2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface RequestContext {
}

/**
* @category Server/fetch
* @category Server/http2
*/
export type HandlerOptions<Context extends OperationContext = undefined> =
RawHandlerOptions<Http2ServerRequest, RequestContext, Context>;
Expand Down

0 comments on commit 893c103

Please sign in to comment.