(key: string)
| 75 | } |
| 76 | |
| 77 | async get(key: string): Promise<unknown> { |
| 78 | const raw = await this.sendRequest('monogatari:storage-get', { key }); |
| 79 | |
| 80 | return this.applyGetTransformations(key, raw); |
| 81 | } |
| 82 | |
| 83 | async set(key: string, value: unknown): Promise<unknown> { |
| 84 | const transformed = this.applySetTransformations(key, value); |
nothing calls this directly
no test coverage detected