mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-06 00:58:44 +00:00
16 lines
552 B
JavaScript
16 lines
552 B
JavaScript
"use strict";
|
|
var async_1 = require('../scheduler/async');
|
|
var timeInterval_1 = require('../operators/timeInterval');
|
|
exports.TimeInterval = timeInterval_1.TimeInterval;
|
|
/**
|
|
* @param scheduler
|
|
* @return {Observable<TimeInterval<any>>|WebSocketSubject<T>|Observable<T>}
|
|
* @method timeInterval
|
|
* @owner Observable
|
|
*/
|
|
function timeInterval(scheduler) {
|
|
if (scheduler === void 0) { scheduler = async_1.async; }
|
|
return timeInterval_1.timeInterval(scheduler)(this);
|
|
}
|
|
exports.timeInterval = timeInterval;
|
|
//# sourceMappingURL=timeInterval.js.map
|