DiscofyAPI/node_modules/helmet/dist/middlewares/x-frame-options/index.d.ts

7 lines
288 B
TypeScript
Raw Permalink Normal View History

2021-03-25 17:23:36 +01:00
import { IncomingMessage, ServerResponse } from "http"
export interface XFrameOptionsOptions {
action?: string
}
declare function xFrameOptions(options?: Readonly<XFrameOptionsOptions>): (_req: IncomingMessage, res: ServerResponse, next: () => void) => void
export default xFrameOptions