@reactivex/rxjs
Version:
Reactive Extensions for modern JavaScript
11 lines (10 loc) • 301 B
TypeScript
import { Action } from './Action';
import { FutureAction } from './FutureAction';
/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @extends {Ignored}
*/
export declare class QueueAction<T> extends FutureAction<T> {
protected _schedule(state?: T, delay?: number): Action<T>;
}