Files
klz-cables.com/.pnpm-store/v10/files/70/5297acf2f36862e4f3c907689feee8d114e22a7631a7cdbb1240529cdb4488ad25620ccc0229efde0a2cd64aa7ba84073d0de1dfb4ea3f0529823d31799c95
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

15 lines
719 B
Plaintext

import { Sampled, Session, SessionOptions } from '../types';
/**
* Get the sampled status for a session based on sample rates & current sampled status.
*/
export declare function getSessionSampleType(sessionSampleRate: number, allowBuffering: boolean): Sampled;
/**
* Create a new session, which in its current implementation is a Sentry event
* that all replays will be saved to as attachments. Currently, we only expect
* one of these Sentry events per "replay session".
*/
export declare function createSession({ sessionSampleRate, allowBuffering, stickySession }: SessionOptions, { previousSessionId }?: {
previousSessionId?: string;
}): Session;
//# sourceMappingURL=createSession.d.ts.map