Files
klz-cables.com/.pnpm-store/v10/files/0e/95847cf900051afd658bc91131809eaa351658947d09835735e7f97b765b59e809a380cb32bca5364f34ac4766b0c6420699719b509ebdddbbea8c2d29fd82
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

13 lines
686 B
Plaintext

import type { SpanAttributes } from '@sentry/core';
/**
* Converts a PerformanceResourceTiming entry to span data for the resource span. Most importantly,
* it converts the timing values from timestamps relative to the `performance.timeOrigin` to absolute timestamps
* in seconds.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming#timestamps
*
* @param resourceTiming
* @returns An array where the first element is the attribute name and the second element is the attribute value.
*/
export declare function resourceTimingToSpanAttributes(resourceTiming: PerformanceResourceTiming): SpanAttributes;
//# sourceMappingURL=resourceTiming.d.ts.map