( key: string, )
| 61 | * Get a setting definition by key |
| 62 | */ |
| 63 | export function getSettingDefinition( |
| 64 | key: string, |
| 65 | ): (SettingDefinition & { key: string }) | undefined { |
| 66 | return FLATTENED_SCHEMA[key]; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Check if a setting requires restart |
no outgoing calls
no test coverage detected