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
13 lines
684 B
Plaintext
13 lines
684 B
Plaintext
import type { Client, Integration, Options } from '@sentry/core';
|
|
import { VercelEdgeClient } from './client';
|
|
import type { VercelEdgeOptions } from './types';
|
|
/** Get the default integrations for the browser SDK. */
|
|
export declare function getDefaultIntegrations(options: Options): Integration[];
|
|
/** Inits the Sentry NextJS SDK on the Edge Runtime. */
|
|
export declare function init(options?: VercelEdgeOptions): Client | undefined;
|
|
export declare function setupOtel(client: VercelEdgeClient): void;
|
|
/**
|
|
* Returns a release dynamically from environment variables.
|
|
*/
|
|
export declare function getSentryRelease(fallback?: string): string | undefined;
|
|
//# sourceMappingURL=sdk.d.ts.map |