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
16 lines
528 B
Plaintext
16 lines
528 B
Plaintext
interface CaptureConsoleOptions {
|
|
levels?: string[];
|
|
/**
|
|
* By default, Sentry will mark captured console messages as handled.
|
|
* Set this to `false` if you want to mark them as unhandled instead.
|
|
*
|
|
* @default true
|
|
*/
|
|
handled?: boolean;
|
|
}
|
|
/**
|
|
* Send Console API calls as Sentry Events.
|
|
*/
|
|
export declare const captureConsoleIntegration: (options?: CaptureConsoleOptions | undefined) => import("../types-hoist/integration").Integration;
|
|
export {};
|
|
//# sourceMappingURL=captureconsole.d.ts.map |