UNPKG

vite

Version:

Native-ESM powered web dev build tool

5 lines (4 loc) 314 B
/// <reference types="node" /> import type { IncomingMessage, ServerResponse } from 'http'; import type { SourceMap } from 'rollup'; export declare function send(req: IncomingMessage, res: ServerResponse, content: string | Buffer, type: string, etag?: string, cacheControl?: string, map?: SourceMap | null): void;