UNPKG

@chubbyts/chubbyts-framework

Version:

A minimal, highly performant middleware PSR-15 inspired function based micro framework built with as little complexity as possible, aimed primarily at those developers who want to understand all the vendors they use.

4 lines (3 loc) 185 B
import type { ServerRequest } from '@chubbyts/chubbyts-undici-server/dist/server'; import type { Route } from './route.js'; export type Match = (serverRequest: ServerRequest) => Route;