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

23 lines
1.0 KiB
Plaintext

import { ServerRuntimeClient } from '@sentry/core';
import { NodeClientOptions } from '../types';
/** A lightweight client for using Sentry with Node without OpenTelemetry. */
export declare class LightNodeClient extends ServerRuntimeClient<NodeClientOptions> {
private _clientReportInterval;
private _clientReportOnExitFlushListener;
private _logOnExitFlushListener;
constructor(options: NodeClientOptions);
/** @inheritDoc */
flush(timeout?: number): PromiseLike<boolean>;
/** @inheritDoc */
close(timeout?: number | undefined): PromiseLike<boolean>;
/**
* Will start tracking client reports for this client.
*
* NOTICE: This method will create an interval that is periodically called and attach a `process.on('beforeExit')`
* hook. To clean up these resources, call `.close()` when you no longer intend to use the client. Not doing so will
* result in a memory leak.
*/
startClientReportTracking(): void;
}
//# sourceMappingURL=client.d.ts.map