UNPKG

csp-builder

Version:

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

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