serve-static.d.ts 348 B

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