UNPKG

319 BTypeScriptView Raw
1/// <reference types="node" />
2import { IncomingMessage, ServerResponse } from 'http';
3interface ReferrerPolicyOptions {
4 policy?: string | string[];
5}
6declare const _default: (options?: ReferrerPolicyOptions | undefined) => (_req: IncomingMessage, res: ServerResponse, next: () => void) => void;
7export = _default;