(key: string, value: string)
| 23 | } |
| 24 | |
| 25 | public async set(key: string, value: string): Promise<void> { |
| 26 | this._logger.create(`set('${key}')`); |
| 27 | |
| 28 | key = this._prefix + key; |
| 29 | await this._store.setItem(key, value); |
| 30 | } |
| 31 | |
| 32 | public async get(key: string): Promise<string | null> { |
| 33 | this._logger.create(`get('${key}')`); |