| 651 | * Represents an asynchronous read-only transaction. |
| 652 | */ |
| 653 | export interface AsyncKeyValueROTransaction { |
| 654 | /** |
| 655 | * Retrieves the data at the given key. |
| 656 | * @param key The key to look under for data. |
| 657 | */ |
| 658 | get(key: string, cb: BFSCallback<Buffer>): void; |
| 659 | } |
| 660 | |
| 661 | /** |
| 662 | * Represents an asynchronous read-write transaction. |
nothing calls this directly
no outgoing calls
no test coverage detected