(key: Tuple, value: any, scope?: Tuple)
| 113 | // scope<KV extends KVStoreAPI>(prefix: string): KV; |
| 114 | get(key: Tuple, scope?: Tuple): Promise<any>; |
| 115 | set(key: Tuple, value: any, scope?: Tuple): Promise<void>; |
| 116 | delete(key: Tuple, scope?: Tuple): Promise<void>; |
| 117 | scan(options: ScanOptions, scope?: Tuple): AsyncIterable<[Tuple, any]>; |
| 118 | scanValues(options: ScanOptions, scope?: Tuple): AsyncIterable<any>; |
no outgoing calls