(key: string)
| 143 | } |
| 144 | |
| 145 | async contains(key: string): Promise<void> { |
| 146 | // Resolves if key exists, rejects if not (matches Space convention) |
| 147 | await this.sendRequest('monogatari:storage-contains', { key }); |
| 148 | } |
| 149 | |
| 150 | async open(): Promise<this> { |
| 151 | return this; |
nothing calls this directly
no test coverage detected