(key: Tuple, scope?: Tuple)
| 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>; |
| 119 | clear(scope?: Tuple): Promise<void>; |
no outgoing calls