Rocky_Mountain_Vending/.pnpm-store/v10/files/96/1ddb3d6a8ba7732069c67a70303c682d7e4a04f822d9588bee2003d4aab4d01b6ef2618dcaff5d1c5f8af04fb8bc70249a8022341f8bf97e89e2308716b62f
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
521 B
Text

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