Rocky_Mountain_Vending/.pnpm-store/v10/files/04/55e48166c525ff50199607ee7e62b24e049fdd27179e35947d0eb6774ebb5c2e271cf2f87028a086422ba6689b5624b02e4e8e7cffd2f884719e2a3ab3eda6
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
403 B
Text

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