Files
klz-cables.com/.pnpm-store/v10/files/14/12c5a172651e071aef2abbeabce9f7dd5ca0d08c907cbb6f07ffecc29082544f4c6d3dee00fc3476be3c2a71cfcc51fdb851731a9b4d9139e5a6de34660760
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

28 lines
790 B
Plaintext

import { 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