(key: string)
| 77 | } |
| 78 | |
| 79 | export function getConfig<T>(key: string): T { |
| 80 | const config = load(); |
| 81 | return config[key]; |
| 82 | } |
| 83 | |
| 84 | export function setGlobalConfig(key: string, value: unknown) { |
| 85 | const config = loadGlobal(); |
no test coverage detected