Rocky_Mountain_Vending/.pnpm-store/v10/files/95/4fcc52acbb89203a60b26760baad23ce8854d308d03376751b285cf3f23e21d54fba5ca4dd2260f99b5b464882cd0dbcedf49f1cf3ec4a7562ef523a0c1468
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

51 lines
No EOL
2.3 KiB
Text

/**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import { Deferred } from '../util/Deferred.js';
import * as CustomQuerySelectors from './CustomQuerySelector.js';
import { IntervalPoller, MutationPoller, RAFPoller } from './Poller.js';
import * as PQuerySelector from './PQuerySelector.js';
/**
* @internal
*/
declare const PuppeteerUtil: Readonly<{
Deferred: typeof Deferred;
createFunction: (functionValue: string) => ((...args: unknown[]) => unknown);
createTextContent: (root: Node) => import("./TextContent.js").TextContent;
IntervalPoller: typeof IntervalPoller;
isSuitableNodeForTextMatching: (node: Node) => boolean;
MutationPoller: typeof MutationPoller;
RAFPoller: typeof RAFPoller;
cssQuerySelector: (root: Node, selector: string) => Element | null;
cssQuerySelectorAll: (root: Node, selector: string) => Iterable<Element>;
xpathQuerySelectorAll: (root: Node, selector: string, maxResults?: number) => Iterable<Node>;
pierce(root: Node): IterableIterator<Node | ShadowRoot>;
pierceAll(root: Node): IterableIterator<Node | ShadowRoot>;
checkVisibility: (node: Node | null, visible?: boolean) => Node | boolean;
textQuerySelectorAll: (root: Node, selector: string) => Generator<Element>;
PCombinator: typeof PQuerySelector.PCombinator;
pQuerySelectorAll: (root: Node, selector: string) => import("../index.js").AwaitableIterable<Node>;
pQuerySelector: (root: Node, selector: string) => Promise<Node | null>;
pierceQuerySelector: (root: Node, selector: string) => Element | null;
pierceQuerySelectorAll: (element: Node, selector: string) => Element[];
customQuerySelectors: {
"__#59766@#selectors": Map<string, CustomQuerySelectors.CustomQuerySelector>;
register(name: string, handler: import("../index.js").CustomQueryHandler): void;
unregister(name: string): void;
get(name: string): CustomQuerySelectors.CustomQuerySelector | undefined;
clear(): void;
};
ariaQuerySelector: (root: Node, selector: string) => Promise<Node | null>;
ariaQuerySelectorAll: (root: Node, selector: string) => AsyncIterable<Node>;
}>;
/**
* @internal
*/
export type PuppeteerInjectedUtil = typeof PuppeteerUtil;
/**
* @internal
*/
export default PuppeteerUtil;
//# sourceMappingURL=injected.d.ts.map