(key: string, value: string)
| 24 | }; |
| 25 | |
| 26 | export const updateConfig = (key: string, value: string) => { |
| 27 | const config = getConfig(); |
| 28 | config.update(key, value, vscode.ConfigurationTarget.Workspace); |
| 29 | }; |
| 30 | |
| 31 | export { config }; |
no test coverage detected