* Shared config composable — single source of truth for AppConfig. * Both ClientMode and ServerMode read/write through this composable * to avoid overwriting each other's config sections.
| 5 | */ |
| 6 | |
| 7 | interface ClientConfig { |
| 8 | interval: number |
| 9 | method: string |
| 10 | select_origin: string |
| 11 | custom_url: string |
| 12 | auto_fetch: boolean |
| 13 | } |
| 14 | |
| 15 | interface ServerConfig { |
| 16 | interval: number |
nothing calls this directly
no outgoing calls
no test coverage detected