prep for publish

This commit is contained in:
2025-01-04 18:04:40 -07:00
parent b73af68989
commit 0c8d1865ff
6 changed files with 384 additions and 331 deletions

View File

@@ -16,6 +16,7 @@ export type Handler = (
ctx: RouterContext,
) => Promise<Response> | Response;
export type Middleware = (
req: Request,
ctx: RouterContext,
next: () => Promise<Response>,
) => Promise<Response>;