Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/server/serve-static.d.ts
2022-12-27 12:05:56 +01:00

6 lines
348 B
TypeScript

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