Rocky_Mountain_Vending/.pnpm-store/v10/files/bb/68411243238aded4d3a7e718a15011043521836d7635d95671bf485cb446bd4d31d54f09d637403e923aa12f5ebbd0bf12f53cb1624f86bedd11f6a2ed1128
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

29 lines
No EOL
1.5 KiB
Text

import type { Tracer } from '@opentelemetry/api';
import type { BasicTracerProvider } from '@opentelemetry/sdk-trace-base';
import type { DynamicSamplingContext, Scope, TraceContext } from '@sentry/core';
import { ServerRuntimeClient } from '@sentry/core';
import type { NodeClientOptions } from '../types';
/** A client for using Sentry with Node & OpenTelemetry. */
export declare class NodeClient extends ServerRuntimeClient<NodeClientOptions> {
traceProvider: BasicTracerProvider | undefined;
private _tracer;
private _clientReportInterval;
private _clientReportOnExitFlushListener;
private _logOnExitFlushListener;
constructor(options: NodeClientOptions);
/** Get the OTEL tracer. */
get tracer(): Tracer;
flush(timeout?: number): Promise<boolean>;
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;
/** Custom implementation for OTEL, so we can handle scope-span linking. */
protected _getTraceInfoFromScope(scope: Scope | undefined): [dynamicSamplingContext: Partial<DynamicSamplingContext> | undefined, traceContext: TraceContext | undefined];
}
//# sourceMappingURL=client.d.ts.map