(text: string)
| 153 | } |
| 154 | |
| 155 | function parsePolicyFile(text: string): unknown { |
| 156 | // Policy files are strict JSON (no JS evaluation). |
| 157 | return JSON.parse(text) as unknown; |
| 158 | } |
| 159 | |
| 160 | export type PolicyStatus = |
| 161 | | { state: "disabled" } |
no test coverage detected