/// import { IncomingMessage, ServerResponse } from "http"; import { Trail } from "../trails"; export declare type Callback = { name: string; cb: (req: IncomingMessage, res: ServerResponse) => void; }; export declare type KernCallback = (this: Trail, req: IncomingMessage, res: ServerResponse) => void;