frontend/.pnpm-store/v3/files/65/242f330fd23453e22515030190e89a37baac32eb397b127114b84b941417cc02cc44e6640d68a874e26923c7aa065e60c9333781836f4015b49f41632cdd57

12 lines
706 B
Plaintext

import { AsyncAction } from './AsyncAction';
import { AsapScheduler } from './AsapScheduler';
import { SchedulerAction } from '../types';
import { TimerHandle } from './timerHandle';
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?: TimerHandle, delay?: number): TimerHandle;
protected recycleAsyncId(scheduler: AsapScheduler, id?: TimerHandle, delay?: number): TimerHandle | undefined;
}
//# sourceMappingURL=AsapAction.d.ts.map