UNPKG

@taquito/taquito

Version:

High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

5 lines (4 loc) 295 B
import { BlockResponse } from '@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>;