* Read a key from a table, either as an Object or with a given type.
(key: string)
| 29 | * Read a key from a table, either as an Object or with a given type. |
| 30 | */ |
| 31 | read(key: string): Promise<Object>; |
| 32 | read<T>(key: string): Promise<T>; |
| 33 | |
| 34 | /** |
no outgoing calls
no test coverage detected