import { Option } from "./_commons"; /** Content Security Policy Error */ export interface CSPError { /** The URI of the resource that was blocked because it violates a policy */ blocked_uri?: Option; /** The policy whose enforcement caused the violation */ original_policy?: Option; /** The directive that was violated */ violated_directive?: Option; }