UNPKG

csp-builder

Version:

A builder tool to help generate Content Security Policies in a type-safe way

8 lines (7 loc) 321 B
import { DirectiveType } from '../../types'; import { AbstractSingleValueDirective } from '../abstract-single-value-directive'; export declare type GroupName = string; export declare class ReportTo extends AbstractSingleValueDirective<GroupName> { getDirectiveName(): string; getDirectiveType(): DirectiveType; }