()
| 130 | } |
| 131 | |
| 132 | async clear(): Promise<void> { |
| 133 | await this.sendRequest('monogatari:storage-clear', {}); |
| 134 | } |
| 135 | |
| 136 | async key(index: number, _full?: boolean): Promise<string> { |
| 137 | const allKeys = await this.keys(_full); |
nothing calls this directly
no test coverage detected