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