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>
26 lines
No EOL
670 B
Text
26 lines
No EOL
670 B
Text
/**
|
|
* @license
|
|
* Copyright 2022 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
declare global {
|
|
interface Window {
|
|
/**
|
|
* @internal
|
|
*/
|
|
__ariaQuerySelector(root: Node, selector: string): Promise<Node | null>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
__ariaQuerySelectorAll(root: Node, selector: string): Promise<Node[]>;
|
|
}
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const ariaQuerySelector: (root: Node, selector: string) => Promise<Node | null>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const ariaQuerySelectorAll: (root: Node, selector: string) => AsyncIterable<Node>;
|
|
//# sourceMappingURL=ARIAQuerySelector.d.ts.map |