Files
klz-cables.com/.pnpm-store/v10/files/b0/8a689b967a96e77f45333588e0b60804656e4e314bc8d715ecf1aba18076aa3a4fc27362e865103996f4de25e2603c6219dd4d2bee72c39faff4d492114d1c
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

20 lines
825 B
Plaintext

import type { Event } from '@sentry/core';
export type SpotlightConnectionOptions = {
/**
* Set this if the Spotlight Sidecar is not running on localhost:8969
* By default, the Url is set to http://localhost:8969/stream
*/
sidecarUrl?: string;
};
export declare const INTEGRATION_NAME = "SpotlightBrowser";
/**
* Use this integration to send errors and transactions to Spotlight.
*
* Learn more about spotlight at https://spotlightjs.com
*/
export declare const spotlightBrowserIntegration: (options?: Partial<SpotlightConnectionOptions> | undefined) => import("@sentry/core").Integration;
/**
* Flags if the event is a transaction created from an interaction with the spotlight UI.
*/
export declare function isSpotlightInteraction(event: Event): boolean;
//# sourceMappingURL=spotlight.d.ts.map