mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 07:46:21 +02:00
9 lines
346 B
TypeScript
9 lines
346 B
TypeScript
/// <reference path="../adonis-typings/index.d.ts" />
|
|
import { HstsOptions } from '@ioc:Adonis/Addons/Shield';
|
|
import { noop } from './noop';
|
|
/**
|
|
* Factory function that returns a new function to Add `Strict-Transport-Security`
|
|
* header based upon given user options.
|
|
*/
|
|
export declare function hstsFactory(options: HstsOptions): typeof noop;
|