Files
klz-cables.com/.pnpm-store/v10/files/ba/fad8e8a883ffef252df629ab9d33e8f28cb99c108b7b73703bfce653f55f01a8d3a1368fbb0c6e5754f90236ee02c54b3220f6a03f870291f028767772c290
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

21 lines
985 B
Plaintext

/**
* Returns a timestamp in seconds since the UNIX epoch using the Date API.
*/
export declare function dateTimestampInSeconds(): number;
/**
* Returns a timestamp in seconds since the UNIX epoch using either the Performance or Date APIs, depending on the
* availability of the Performance API.
*
* BUG: Note that because of how browsers implement the Performance API, the clock might stop when the computer is
* asleep. This creates a skew between `dateTimestampInSeconds` and `timestampInSeconds`. The
* skew can grow to arbitrary amounts like days, weeks or months.
* See https://github.com/getsentry/sentry-javascript/issues/2590.
*/
export declare function timestampInSeconds(): number;
/**
* The number of milliseconds since the UNIX epoch. This value is only usable in a browser, and only when the
* performance API is available.
*/
export declare function browserPerformanceTimeOrigin(): number | undefined;
//# sourceMappingURL=time.d.ts.map