Module

x/polkadot/types/types/index.ts>Observable#lift

Package publishing for deno.land/x/polkadot
Latest
method Observable.prototype.lift
Deprecated
Deprecated

Internal implementation detail, do not use directly. Will be made internal in v8. If you have implemented an operator using lift, it is recommended that you create an operator by simply returning new Observable() directly. See "Creating new operators from scratch" section here: https://rxjs.dev/guide/operators

import { Observable } from "https://dotland.deno.dev/x/polkadot@0.2.45/types/types/index.ts";

Creates a new Observable, with this Observable instance as the source, and the passed operator defined as the new observable's operator.

Parameters

optional
operator: Operator<T, R>

the operator defining the operation to take on the observable

Returns

a new observable with the Operator applied