UNPKG

csp-builder

Version:

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

8 lines (7 loc) 331 B
import { DirectiveType, SourceList } from '../../types'; import { AbstractMultiValueDirective } from '../abstract-multi-value-directive'; export declare class WorkerSource extends AbstractMultiValueDirective<SourceList> { getDirectiveName(): string; getDirectiveType(): DirectiveType; getMinimumCspVersion(): number; }