UNPKG

295 BTypeScriptView Raw
1import { IncomingMessage, ServerResponse } from "http";
2export interface XFrameOptionsOptions {
3 action?: string;
4}
5declare function xFrameOptions(options?: Readonly<XFrameOptionsOptions>): (_req: IncomingMessage, res: ServerResponse, next: () => void) => void;
6export default xFrameOptions;