UNPKG

mincu-debug-tools

Version:

[![npm install size](https://packagephobia.com/badge?p=mincu-debug-tools)](https://packagephobia.com/result?p=mincu-debug-tools)

6 lines (5 loc) 278 B
/// <reference types="node" /> import { IncomingMessage, ServerResponse } from 'http'; declare type Listeners = (req: IncomingMessage, res: ServerResponse) => void; export declare const makeApi: (cb: Listeners) => (req: IncomingMessage, res: ServerResponse) => void; export {};