UNPKG

@ceramicnetwork/core

Version:

Typescript implementation of the Ceramic protocol

5 lines 198 B
import { Observable, Subscription } from 'rxjs'; export declare type ObservableWithNext<T> = Observable<T> & { next: (m: T) => Subscription; }; //# sourceMappingURL=observable-with-next.d.ts.map