UNPKG

routup

Version:

Routup is a minimalistic http based routing framework.

5 lines (4 loc) 223 B
import type { DispatchEvent } from './module'; type DispatchTargetFn = (next: (err?: Error) => any) => unknown; export declare function dispatch(event: DispatchEvent, target: DispatchTargetFn): Promise<boolean>; export {};