mirror of
https://codeberg.org/teddit/teddit.git
synced 2026-04-21 22:15:04 -04:00
initial commit
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
import { IncomingMessage, ServerResponse } from "http";
|
||||
export interface StrictTransportSecurityOptions {
|
||||
maxAge?: number;
|
||||
includeSubDomains?: boolean;
|
||||
preload?: boolean;
|
||||
}
|
||||
declare function strictTransportSecurity(options?: Readonly<StrictTransportSecurityOptions>): (_req: IncomingMessage, res: ServerResponse, next: () => void) => void;
|
||||
export default strictTransportSecurity;
|
||||
Reference in New Issue
Block a user