csp-builder
Version:
A builder tool to help generate Content Security Policies in a type-safe way
9 lines (8 loc) • 371 B
TypeScript
import { DirectiveType } from '../../types';
import { AbstractMultiValueDirective } from '../abstract-multi-value-directive';
export declare type PluginTypeSource = string;
export declare class PluginTypes extends AbstractMultiValueDirective<PluginTypeSource> {
getDirectiveName(): string;
getDirectiveType(): DirectiveType;
getMinimumCspVersion(): number;
}