dijkstra-backend-cloudron/node_modules/referrer-policy/dist/index.d.ts

8 lines
319 B
TypeScript
Raw Normal View History

/// <reference types="node" />
import { IncomingMessage, ServerResponse } from 'http';
interface ReferrerPolicyOptions {
policy?: string | string[];
}
declare const _default: (options?: ReferrerPolicyOptions | undefined) => (_req: IncomingMessage, res: ServerResponse, next: () => void) => void;
export = _default;