(index: number, _full?: boolean)
| 134 | } |
| 135 | |
| 136 | async key(index: number, _full?: boolean): Promise<string> { |
| 137 | const allKeys = await this.keys(_full); |
| 138 | return allKeys[index] ?? ''; |
| 139 | } |
| 140 | |
| 141 | async keys(_full?: boolean): Promise<string[]> { |
| 142 | return await this.sendRequest('monogatari:storage-keys', {}) as string[]; |