UNPKG

348 BTypeScriptView Raw
1/// <reference types="node" />
2import { IncomingMessage, ServerResponse } from 'http';
3export declare function serveStatic(req: IncomingMessage, res: ServerResponse, path: string): Promise<void>;
4export declare function getContentType(extWithoutDot: string): string | null;
5export declare function getExtension(contentType: string): string | null;