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