Bones/node_modules/rxjs/operator/dematerialize.d.ts

7 lines
364 B
TypeScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
import { Observable } from '../Observable';
/**
* Returns an Observable that transforms Notification objects into the items or notifications they represent.
* @returns {Observable} an Observable that emits items and notifications embedded in Notification objects emitted by the source Observable.
*/
export declare function dematerialize<T>(): Observable<any>;