| 11 | } |
| 12 | |
| 13 | export interface AdvancedSettings { |
| 14 | id: number; |
| 15 | title: string; |
| 16 | description: string; |
| 17 | defaultEnabledState: boolean; |
| 18 | group: AdvancedSettingsGroup; |
| 19 | options?: { |
| 20 | source?: Source; |
| 21 | type?: string; |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | export interface FeedAdvancedSettings { |
| 26 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected