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.
16 lines
552 B
16 lines
552 B
"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
|