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

27 lines
767 B
Plaintext

import type { BrowserClientReplayOptions, ClientOptions, Event, SeverityLevel } from '@sentry/core';
import { Client } from '@sentry/core';
export interface TestClientOptions extends ClientOptions, BrowserClientReplayOptions {
}
/**
*
*/
export declare class TestClient extends Client<TestClientOptions> {
constructor(options: TestClientOptions);
/**
*
*/
eventFromException(exception: any): PromiseLike<Event>;
/**
*
*/
eventFromMessage(message: string, level?: SeverityLevel): PromiseLike<Event>;
}
/**
*
*/
export declare function init(options: TestClientOptions): void;
/**
*
*/
export declare function getDefaultClientOptions(options?: Partial<ClientOptions>): ClientOptions;
//# sourceMappingURL=TestClient.d.ts.map