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>
17 lines
No EOL
664 B
Text
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 |