1 2 3 4 5 6 | 1 1 1 1 | import {Observable} from '../../../Observable'; import {max} from '../../../operator/extended/max'; import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); observableProto.max = max; |