Rocky_Mountain_Vending/.pnpm-store/v10/files/02/dda1c9f9dc19f4bf6ccfa5ca6a3d05a395a97dfb63da4ecb74b304d6472c730f0eb833c9e969f42394fcf4bad60ab12844d0aa08139b3e12cac6d0454a2e03
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

29 lines
No EOL
665 B
Text

/**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Determines whether a given node is suitable for text matching.
*
* @internal
*/
export declare const isSuitableNodeForTextMatching: (node: Node) => boolean;
/**
* @internal
*/
export interface TextContent {
full: string;
immediate: string[];
}
/**
* Builds the text content of a node using some custom logic.
*
* @remarks
* The primary reason this function exists is due to {@link ShadowRoot}s not having
* text content.
*
* @internal
*/
export declare const createTextContent: (root: Node) => TextContent;
//# sourceMappingURL=TextContent.d.ts.map