Files
klz-cables.com/.pnpm-store/v10/files/e6/443440ccac13c174ece4df5b75b525898b39edd4e1f0b359893f793dd9a5e98a7b2e5eb306b84dcce227325ffa1bb93b95da59bdccbcd5e96ab2a058723d22
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

12 lines
627 B
Plaintext

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