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

12 lines
630 B
Text

import { Measurements, MeasurementUnit } from '../types-hoist/measurement';
import { TimedEvent } from '../types-hoist/timedEvent';
/**
* Adds a measurement to the active transaction on the current global scope. You can optionally pass in a different span
* as the 4th parameter.
*/
export declare function setMeasurement(name: string, value: number, unit: MeasurementUnit, activeSpan?: import("..").Span | undefined): void;
/**
* Convert timed events to measurements.
*/
export declare function timedEventsToMeasurements(events: TimedEvent[]): Measurements | undefined;
//# sourceMappingURL=measurement.d.ts.map