项目原始demo,不改动
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

13 rivejä
439 B

  1. import { async } from '../scheduler/async';
  2. import { timeInterval as higherOrder, TimeInterval } from '../operators/timeInterval';
  3. export { TimeInterval };
  4. /**
  5. * @param scheduler
  6. * @return {Observable<TimeInterval<any>>|WebSocketSubject<T>|Observable<T>}
  7. * @method timeInterval
  8. * @owner Observable
  9. */
  10. export function timeInterval(scheduler = async) {
  11. return higherOrder(scheduler)(this);
  12. }
  13. //# sourceMappingURL=timeInterval.js.map