dijkstra-backend-cloudron/node_modules/x-xss-protection/dist/index.d.ts

10 lines
352 B
TypeScript
Raw Normal View History

/// <reference types="node" />
import { IncomingMessage, ServerResponse } from 'http';
interface XXssProtectionOptions {
mode?: 'block' | null;
reportUri?: string;
setOnOldIE?: boolean;
}
declare const _default: (options?: XXssProtectionOptions) => (_req: IncomingMessage, res: ServerResponse, next: () => void) => void;
export = _default;