| 20 | export type CdpOutput = 'trusted' | 'untrusted'; |
| 21 | |
| 22 | export interface CdpAllowEntry { |
| 23 | domain: string; |
| 24 | method: string; |
| 25 | scope: CdpScope; |
| 26 | output: CdpOutput; |
| 27 | justification: string; |
| 28 | } |
| 29 | |
| 30 | export const CDP_ALLOWLIST: ReadonlyArray<CdpAllowEntry> = Object.freeze([ |
| 31 | // ─── Accessibility (read-only) ───────────────────────────── |
nothing calls this directly
no outgoing calls
no test coverage detected