Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/37376c8df89323302666e959afe25bbeca71c02e9a022d5abb7b9945a103846d83c5e53224bcba5f2e967168f0e4b73c637e92ef03e6784f7d5285d426ae42
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

18 lines
No EOL
532 B
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import { QueryHandler } from './QueryHandler.js';
/**
* @internal
*/
export class CSSQueryHandler extends QueryHandler {
static querySelector = (element, selector, { cssQuerySelector }) => {
return cssQuerySelector(element, selector);
};
static querySelectorAll = (element, selector, { cssQuerySelectorAll }) => {
return cssQuerySelectorAll(element, selector);
};
}
//# sourceMappingURL=CSSQueryHandler.js.map