mirror of https://github.com/lukechilds/docs.git
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.
11 lines
435 B
11 lines
435 B
import { Observable } from '../Observable';
|
|
import { IScheduler } from '../Scheduler';
|
|
import { TimeInterval } from '../operators/timeInterval';
|
|
export { TimeInterval };
|
|
/**
|
|
* @param scheduler
|
|
* @return {Observable<TimeInterval<any>>|WebSocketSubject<T>|Observable<T>}
|
|
* @method timeInterval
|
|
* @owner Observable
|
|
*/
|
|
export declare function timeInterval<T>(this: Observable<T>, scheduler?: IScheduler): Observable<TimeInterval<T>>;
|
|
|