/** * @type SecuritySettingHsts: The security header for a zone. * * @property enabled: Enable strict transport security. * * @property includeSubdomains: Include all subdomains for strict transport security. * * @property maxAge: Max age in seconds of the strict transport security. * * @property preload: Preload any URLs that are included in the response headers. * */ export type SecuritySettingHsts = { enabled?: boolean; includeSubdomains?: boolean; maxAge?: number; preload?: boolean; } & { [key: string]: any; };