17 lines
578 B
JavaScript
17 lines
578 B
JavaScript
"use strict";
|
|
var publishReplay_1 = require('../operators/publishReplay');
|
|
/* tslint:enable:max-line-length */
|
|
/**
|
|
* @param bufferSize
|
|
* @param windowTime
|
|
* @param selectorOrScheduler
|
|
* @param scheduler
|
|
* @return {Observable<T> | ConnectableObservable<T>}
|
|
* @method publishReplay
|
|
* @owner Observable
|
|
*/
|
|
function publishReplay(bufferSize, windowTime, selectorOrScheduler, scheduler) {
|
|
return publishReplay_1.publishReplay(bufferSize, windowTime, selectorOrScheduler, scheduler)(this);
|
|
}
|
|
exports.publishReplay = publishReplay;
|
|
//# sourceMappingURL=publishReplay.js.map
|