Skip to content

Commit

Permalink
chore(fix): MaybeRespone typo (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson authored Nov 22, 2024
1 parent accbe24 commit b61d0f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/base/compose/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ export interface ResponseConvertible {

export type ResponseLike = Response | ResponseConvertible;

export type MaybeRespone = ResponseLike | void;
export type MaybeResponse = ResponseLike | void;

export type MaybeAsyncResponse = MaybeRespone | Promise<MaybeRespone>;
export type MaybeAsyncResponse = MaybeResponse | Promise<MaybeResponse>;

export type RequestHandler<P = unknown> = (
context: RequestContext<P>,
Expand Down

0 comments on commit b61d0f9

Please sign in to comment.