mirror of
https://codeberg.org/tacerus/teddit.git
synced 2025-01-10 21:32:35 +01:00
7 lines
295 B
TypeScript
7 lines
295 B
TypeScript
|
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;
|