spookvooper-api/typings/modules/TransactionHub.d.ts

16 lines
331 B
TypeScript

import { Observable } from 'rxjs'
declare class TransactionHub {
private readonly connection
private readonly val
fromAccount: string
toAccount: string
fromType: string
toType: string
event: Observable<unknown>
constructor ();
start (): Promise<void>;
private readonly onClosed
}
export default TransactionHub