Interface ITrustedTypePolicyOptions

interface ITrustedTypePolicyOptions {
    createHTML?: (
        input: string,
        ...arguments: any[],
    ) => string;
    createScript?: (
        input: string,
        ...arguments: any[],
    ) => string;
    createScriptURL?: (
        input: string,
        ...arguments: any[],
    ) => string;
}

Properties§

§createHTML?: { ... }
§createScript?: { ... }
§createScriptURL?: { ... }