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>
12 lines
No EOL
627 B
Text
12 lines
No EOL
627 B
Text
import type { Measurements, MeasurementUnit } from '../types-hoist/measurement';
|
|
import type { 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 |