mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-12-14 16:29:04 +00:00
update
This commit is contained in:
16
node_modules/rxjs/scheduler/QueueAction.d.ts
generated
vendored
Normal file
16
node_modules/rxjs/scheduler/QueueAction.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { AsyncAction } from './AsyncAction';
|
||||
import { Subscription } from '../Subscription';
|
||||
import { QueueScheduler } from './QueueScheduler';
|
||||
/**
|
||||
* We need this JSDoc comment for affecting ESDoc.
|
||||
* @ignore
|
||||
* @extends {Ignored}
|
||||
*/
|
||||
export declare class QueueAction<T> extends AsyncAction<T> {
|
||||
protected scheduler: QueueScheduler;
|
||||
protected work: (this: QueueAction<T>, state?: T) => void;
|
||||
constructor(scheduler: QueueScheduler, work: (this: QueueAction<T>, state?: T) => void);
|
||||
schedule(state?: T, delay?: number): Subscription;
|
||||
execute(state: T, delay: number): any;
|
||||
protected requestAsyncId(scheduler: QueueScheduler, id?: any, delay?: number): any;
|
||||
}
|
||||
Reference in New Issue
Block a user