UNPKG

routup

Version:

Routup is a minimalistic http based routing framework.

5 lines (4 loc) 237 B
import type { Handler } from './module'; import type { HandlerConfig } from './types'; export declare function isHandlerConfig(input: unknown): input is HandlerConfig; export declare function isHandler(input: unknown): input is Handler;