* Fetches a entry from the bucket. * * @param key The key for the value you want returned * @returns The entry, or undefined if it did not exist
(key: string)
| 180 | * @returns The entry, or undefined if it did not exist |
| 181 | */ |
| 182 | async get(key: string) { |
| 183 | return this.entryFromInternalOptional(await OpWrappers.bucketStorageGet({ |
| 184 | pluginId: this.pluginId, |
| 185 | bucketName: this.name, |
| 186 | key: key, |
| 187 | })); |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * Deletes an entry from the bucket permanently. |
no test coverage detected