UNPKG

261 BTypeScriptView Raw
1/// <reference types="node" />
2import { ServerResponse } from "http";
3export = vary;
4
5declare function vary(res: ServerResponse, field: string | string[]): void;
6
7declare namespace vary {
8 function append(header: string, field: string | string[]): string;
9}