UNPKG

routup

Version:

Routup is a minimalistic http based routing framework.

5 lines (4 loc) 129 B
import type { DispatchEvent } from './event'; export interface Dispatcher { dispatch(event: DispatchEvent): Promise<void>; }