Rocky_Mountain_Vending/.pnpm-store/v10/files/9a/c9b0df387a82e2b49f09ec1a6e1aa14dad521271ffb5c3931ebafe07119286b8c9859da3270066aef7c14c52c29c839509b48efea7010c9c7ea3c292b03710
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

15 lines
No EOL
588 B
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { PuppeteerInjectedUtil } from '../injected/injected.js';
import { QueryHandler } from './QueryHandler.js';
/**
* @internal
*/
export declare class CSSQueryHandler extends QueryHandler {
static querySelector: (element: Node, selector: string, { cssQuerySelector }: PuppeteerInjectedUtil) => Node | null;
static querySelectorAll: (element: Node, selector: string, { cssQuerySelectorAll }: PuppeteerInjectedUtil) => Iterable<Node>;
}
//# sourceMappingURL=CSSQueryHandler.d.ts.map