Skip to content

Commit

Permalink
chore(fix): MaybeRespone typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Nov 13, 2024
1 parent c57dbae commit 3b0fe4e
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 3b0fe4e

Please sign in to comment.