(val: string)
| 22 | } |
| 23 | |
| 24 | private static getSettings<T>(val: string): T { |
| 25 | return Config.configuration.get(val) as T; |
| 26 | } |
| 27 | |
| 28 | private static setSettings(key: string, val: number, isGlobal: boolean = false): Thenable<void> { |
| 29 | return Config.configuration.update(key, val, isGlobal); |
no outgoing calls
no test coverage detected