This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/rxjs/internal/scheduler/AsapAction.d.ts

16 lines
669 B
TypeScript

import { AsyncAction } from './AsyncAction';
import { AsapScheduler } from './AsapScheduler';
import { SchedulerAction } from '../types';
/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @extends {Ignored}
*/
export declare class AsapAction<T> extends AsyncAction<T> {
protected scheduler: AsapScheduler;
protected work: (this: SchedulerAction<T>, state?: T) => void;
constructor(scheduler: AsapScheduler, work: (this: SchedulerAction<T>, state?: T) => void);
protected requestAsyncId(scheduler: AsapScheduler, id?: any, delay?: number): any;
protected recycleAsyncId(scheduler: AsapScheduler, id?: any, delay?: number): any;
}