Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/d21615c0d01472aca6b1cd7570106dacb8ead525718dd78fe426a577394bc0a994dfc200efe983d415f5ced2f584ee8da69909bc8db23fb820b5bfbda905b1
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

124 lines
No EOL
3.3 KiB
Text

/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { OperatorFunction } from '../../third_party/rxjs/rxjs.js';
import { Observable } from '../../third_party/rxjs/rxjs.js';
import type { CDPSession } from '../api/CDPSession.js';
import type { EventEmitter, EventType } from './EventEmitter.js';
import type { ParsedPDFOptions, PDFOptions } from './PDFOptions.js';
/**
* @internal
*/
export declare const debugError: (...args: unknown[]) => void;
/**
* @internal
*/
export declare const DEFAULT_VIEWPORT: Readonly<{
width: 800;
height: 600;
}>;
/**
* @internal
*/
export declare class PuppeteerURL {
#private;
static INTERNAL_URL: string;
static fromCallSite(functionName: string, site: NodeJS.CallSite): PuppeteerURL;
static parse: (url: string) => PuppeteerURL;
static isPuppeteerURL: (url: string) => boolean;
get functionName(): string;
get siteString(): string;
toString(): string;
}
/**
* @internal
*/
export declare const withSourcePuppeteerURLIfNone: <T extends NonNullable<unknown>>(functionName: string, object: T) => T;
/**
* @internal
*/
export declare const getSourcePuppeteerURLIfAvailable: <T extends NonNullable<unknown>>(object: T) => PuppeteerURL | undefined;
/**
* @internal
*/
export declare const isString: (obj: unknown) => obj is string;
/**
* @internal
*/
export declare const isNumber: (obj: unknown) => obj is number;
/**
* @internal
*/
export declare const isPlainObject: (obj: unknown) => obj is Record<any, unknown>;
/**
* @internal
*/
export declare const isRegExp: (obj: unknown) => obj is RegExp;
/**
* @internal
*/
export declare const isDate: (obj: unknown) => obj is Date;
/**
* @internal
*/
export declare function evaluationString(fun: Function | string, ...args: unknown[]): string;
/**
* @internal
*/
export declare function getReadableAsTypedArray(readable: ReadableStream<Uint8Array>, path?: string): Promise<Uint8Array | null>;
/**
* @internal
*/
export declare function getReadableFromProtocolStream(client: CDPSession, handle: string): Promise<ReadableStream<Uint8Array>>;
/**
* @internal
*/
export declare function validateDialogType(type: string): 'alert' | 'confirm' | 'prompt' | 'beforeunload';
/**
* @internal
*/
export declare function timeout(ms: number, cause?: Error): Observable<never>;
/**
* @internal
*/
export declare const UTILITY_WORLD_NAME: string;
/**
* @internal
*/
export declare const SOURCE_URL_REGEX: RegExp;
/**
* @internal
*/
export declare function getSourceUrlComment(url: string): string;
/**
* @internal
*/
export declare const NETWORK_IDLE_TIME = 500;
/**
* @internal
*/
export declare function parsePDFOptions(options?: PDFOptions, lengthUnit?: 'in' | 'cm'): ParsedPDFOptions;
/**
* @internal
*/
export declare const unitToPixels: {
px: number;
in: number;
cm: number;
mm: number;
};
/**
* @internal
*/
export declare function fromEmitterEvent<Events extends Record<EventType, unknown>, Event extends keyof Events>(emitter: EventEmitter<Events>, eventName: Event): Observable<Events[Event]>;
/**
* @internal
*/
export declare function fromAbortSignal(signal?: AbortSignal, cause?: Error): Observable<never>;
/**
* @internal
*/
export declare function filterAsync<T>(predicate: (value: T) => boolean | PromiseLike<boolean>): OperatorFunction<T, T>;
//# sourceMappingURL=util.d.ts.map