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>
18 lines
798 B
Text
18 lines
798 B
Text
import { Integration, Options } from '@sentry/core';
|
|
import { NodeClient } from '@sentry/node-core';
|
|
import { NodeOptions } from '../types';
|
|
/**
|
|
* Get default integrations, excluding performance.
|
|
*/
|
|
export declare function getDefaultIntegrationsWithoutPerformance(): Integration[];
|
|
/** Get the default integrations for the Node SDK. */
|
|
export declare function getDefaultIntegrations(options: Options): Integration[];
|
|
/**
|
|
* Initialize Sentry for Node.
|
|
*/
|
|
export declare function init(options?: NodeOptions | undefined): NodeClient | undefined;
|
|
/**
|
|
* Initialize Sentry for Node, without any integrations added by default.
|
|
*/
|
|
export declare function initWithoutDefaultIntegrations(options?: NodeOptions | undefined): NodeClient | undefined;
|
|
//# sourceMappingURL=index.d.ts.map
|