UNPKG

routup

Version:

Routup is a minimalistic http based routing framework.

8 lines (7 loc) 218 B
import type { Response } from '../types'; type ResponseFormats = { default: () => void; [key: string]: () => void; }; export declare function sendFormat(res: Response, input: ResponseFormats): void; export {};