| 84 | |
| 85 | save(partial: Partial<CheckInConfig>): void { |
| 86 | this.data = { ...this.data, ...partial }; |
| 87 | try { |
| 88 | fs.writeFileSync(this.configPath, JSON.stringify(this.data, null, 2), "utf-8"); |
| 89 | } catch (e) { |
nothing calls this directly
no outgoing calls
no test coverage detected