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
21 lines
841 B
Plaintext
21 lines
841 B
Plaintext
import { 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
|