Rocky_Mountain_Vending/.pnpm-store/v10/files/96/d08c9fa752dbf65cf59431f2f5f29b530530f702c96044b00e9c15a23d53d199fd39883128c31fc191bcc3f6cd529712927b7229e4842e08a404fce293b8f2
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

28 lines
835 B
Text

import type nodePerfHooks from "node:perf_hooks";
declare class Histogram implements nodePerfHooks.Histogram {
min: number;
max: number;
mean;
exceeds: number;
stddev;
count: number;
countBigInt: bigint;
exceedsBigInt: bigint;
maxBigInt: number;
minBigInt: bigint;
percentiles: Map<number, number>;
percentilesBigInt: Map<bigint, bigint>;
percentileBigInt(_percentile: number): bigint;
percentile(percentile: number): number;
reset(): void;
}
export declare class IntervalHistogram extends Histogram implements nodePerfHooks.IntervalHistogram {
enable(): boolean;
disable(): boolean;
}
export declare class RecordableHistogram extends Histogram implements nodePerfHooks.RecordableHistogram {
record(val: number | bigint): void;
recordDelta(): void;
add(other: nodePerfHooks.RecordableHistogram): void;
}
export {};