/// module Rx { export interface Observable { /** * Materializes the implicit notifications of an observable sequence as explicit notification values. * @returns {Observable} An observable sequence containing the materialized notification values from the source sequence. */ materialize(): Observable; } } (function () { var o : Rx.Observable; o = o.materialize(); });