(key: string)
| 104 | } |
| 105 | |
| 106 | async set(key: string, value: any): Promise<void> { |
| 107 | await this.initPromise; |
| 108 | if (!this.db) return; |
| 109 | this.db.data.cache[key] = value; |
| 110 | await this.db.write(); |
| 111 | } |
| 112 | |
| 113 | // Generic helpers for root properties |
no outgoing calls
no test coverage detected