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
15 lines
742 B
Plaintext
15 lines
742 B
Plaintext
import { VercelEdgeOptions } from '@sentry/vercel-edge';
|
|
export * from '@sentry/vercel-edge';
|
|
export * from '../common';
|
|
export { captureUnderscoreErrorException } from '../common/pages-router-instrumentation/_error';
|
|
export { startSpan, startSpanManual, startInactiveSpan } from '../common/utils/nextSpan';
|
|
export { wrapApiHandlerWithSentry } from './wrapApiHandlerWithSentry';
|
|
export type EdgeOptions = VercelEdgeOptions;
|
|
/** Inits the Sentry NextJS SDK on the Edge Runtime. */
|
|
export declare function init(options?: VercelEdgeOptions): void;
|
|
/**
|
|
* Just a passthrough in case this is imported from the client.
|
|
*/
|
|
export declare function withSentryConfig<T>(exportedUserNextConfig: T): T;
|
|
//# sourceMappingURL=index.d.ts.map
|