@mavrykdynamics/taquito
Version:
High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.
5 lines (4 loc) • 306 B
TypeScript
import { BlockResponse } from '@mavrykdynamics/taquito-rpc';
import { Observable } from 'rxjs';
import { OperationContent, Subscription } from './interface';
export declare function createObservableFromSubscription<T extends BlockResponse | string | OperationContent>(sub: Subscription<T>): Observable<T>;