Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/cda9c1c278b1524c406e409760f62d45bb029f816b1bc7c734eb8de484ba3c9026d507af7a9a543568c24d58c6eae05e3dd303db0e901b4e972d263e09e648
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

17 lines
No EOL
664 B
Text

/**
* @license
* Copyright 2020 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { ElementHandle } from '../api/ElementHandle.js';
import { QueryHandler, type QuerySelector } from './QueryHandler.js';
import type { AwaitableIterable } from './types.js';
/**
* @internal
*/
export declare class ARIAQueryHandler extends QueryHandler {
static querySelector: QuerySelector;
static queryAll(element: ElementHandle<Node>, selector: string): AwaitableIterable<ElementHandle<Node>>;
static queryOne: (element: ElementHandle<Node>, selector: string) => Promise<ElementHandle<Node> | null>;
}
//# sourceMappingURL=AriaQueryHandler.d.ts.map