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
20 lines
788 B
Plaintext
20 lines
788 B
Plaintext
import { BasicTracerProvider } from '@opentelemetry/sdk-trace-base';
|
|
import { ServerRuntimeClient } from '@sentry/core';
|
|
import { VercelEdgeClientOptions } from './types';
|
|
/**
|
|
* The Sentry Vercel Edge Runtime SDK Client.
|
|
*
|
|
* @see VercelEdgeClientOptions for documentation on configuration options.
|
|
* @see ServerRuntimeClient for usage documentation.
|
|
*/
|
|
export declare class VercelEdgeClient extends ServerRuntimeClient<VercelEdgeClientOptions> {
|
|
traceProvider: BasicTracerProvider | undefined;
|
|
/**
|
|
* Creates a new Vercel Edge Runtime SDK instance.
|
|
* @param options Configuration options for this SDK.
|
|
*/
|
|
constructor(options: VercelEdgeClientOptions);
|
|
flush(timeout?: number): Promise<boolean>;
|
|
}
|
|
//# sourceMappingURL=client.d.ts.map
|