Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
No EOL
744 B
Text
14 lines
No EOL
744 B
Text
import { AsyncAction } from './AsyncAction';
|
|
import { Subscription } from '../Subscription';
|
|
import { QueueScheduler } from './QueueScheduler';
|
|
import { SchedulerAction } from '../types';
|
|
import { TimerHandle } from './timerHandle';
|
|
export declare class QueueAction<T> extends AsyncAction<T> {
|
|
protected scheduler: QueueScheduler;
|
|
protected work: (this: SchedulerAction<T>, state?: T) => void;
|
|
constructor(scheduler: QueueScheduler, work: (this: SchedulerAction<T>, state?: T) => void);
|
|
schedule(state?: T, delay?: number): Subscription;
|
|
execute(state: T, delay: number): any;
|
|
protected requestAsyncId(scheduler: QueueScheduler, id?: TimerHandle, delay?: number): TimerHandle;
|
|
}
|
|
//# sourceMappingURL=QueueAction.d.ts.map |