You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
578 B
17 lines
578 B
"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
|