UNPKG

routup

Version:

Routup is a minimalistic http based routing framework.

5 lines (4 loc) 255 B
import type { CoreHandlerConfig, CoreHandlerFn } from './core'; import type { ErrorHandlerConfig, ErrorHandlerFn } from './error'; export type HandlerConfig = CoreHandlerConfig | ErrorHandlerConfig; export type HandlerFn = CoreHandlerFn | ErrorHandlerFn;