UNPKG

routup

Version:

Routup is a minimalistic http based routing framework.

5 lines (4 loc) 256 B
import { Handler } from '../module'; import type { CoreHandlerConfig, CoreHandlerFn } from './types'; export declare function coreHandler(input: Omit<CoreHandlerConfig, 'type'>): Handler; export declare function coreHandler(input: CoreHandlerFn): Handler;