Rocky_Mountain_Vending/.pnpm-store/v10/files/f4/b99ace5d475a841c27efe0c1e8f1424826c7b837db3c1e485a28a13a062f42a233172659ad9b5ed2b13780c16a057862a18450d9e0b9ed117fd932c1515e56
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

20 lines
416 B
Text

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