(value: unknown)
| 1313 | const AUTO_MODE_ENABLED_DEFAULT: AutoModeEnabledState = 'disabled' |
| 1314 | |
| 1315 | function parseAutoModeEnabledState(value: unknown): AutoModeEnabledState { |
| 1316 | if (value === 'enabled' || value === 'disabled' || value === 'opt-in') { |
| 1317 | return value |
| 1318 | } |
| 1319 | return AUTO_MODE_ENABLED_DEFAULT |
| 1320 | } |
| 1321 | |
| 1322 | /** |
| 1323 | * Reads the `enabled` field from tengu_auto_mode_config (cached, may be stale). |
no outgoing calls
no test coverage detected