| 106 | export interface OutputGroup { |
| 107 | name: string; |
| 108 | rules: Partial<RuleSet>; |
| 109 | } |
| 110 | |
| 111 | export interface SourceProviderData { |
| 112 | provider: string; |
| 113 | name: string; |
| 114 | description?: string; |
| 115 | scope?: (typeof providerScopes)[number]; |
| 116 | categories: NormalizedSourceProvider["categories"]; |
| 117 | aliases: string[]; |
| 118 | allowDangerousDomainSuffix: string[]; |
| 119 | groups: OutputGroup[]; |
nothing calls this directly
no outgoing calls
no test coverage detected