Rocky_Mountain_Vending/.pnpm-store/v10/files/c3/82a11e79d85d1e2ced395a7488e31bc85c224492730d35a2808ead641c4c01a95853942052ee2633d3986d00966ef5ad809ca4177552e91c5742c078f8f056
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

42 lines
No EOL
1.1 KiB
Text

/**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { ElementHandle } from '../api/ElementHandle.js';
import type { Realm } from '../api/Realm.js';
import type { HandleFor } from './types.js';
/**
* @internal
*/
export interface WaitTaskOptions {
polling: 'raf' | 'mutation' | number;
root?: ElementHandle<Node>;
timeout: number;
signal?: AbortSignal;
}
/**
* @internal
*/
export declare class WaitTask<T = unknown> {
#private;
constructor(world: Realm, options: WaitTaskOptions, fn: ((...args: unknown[]) => Promise<T>) | string, ...args: unknown[]);
get result(): Promise<HandleFor<T>>;
rerun(): Promise<void>;
terminate(error?: Error): Promise<void>;
/**
* Not all errors lead to termination. They usually imply we need to rerun the task.
*/
getBadError(error: unknown): Error | undefined;
}
/**
* @internal
*/
export declare class TaskManager {
#private;
add(task: WaitTask<any>): void;
delete(task: WaitTask<any>): void;
terminateAll(error?: Error): void;
rerunAll(): Promise<void>;
}
//# sourceMappingURL=WaitTask.d.ts.map