UNPKG

@chubbyts/chubbyts-framework

Version:

A minimal, highly performant middleware PSR-15 inspired function based microframework 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) 177 B
import type { ServerRequest } from '@chubbyts/chubbyts-http-types/dist/message'; import type { Route } from './route.js'; export type Match = (request: ServerRequest) => Route;