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>
20 lines
No EOL
562 B
Text
20 lines
No EOL
562 B
Text
interface Options {
|
|
/**
|
|
* Whether to include child process arguments in breadcrumbs data.
|
|
*
|
|
* @default false
|
|
*/
|
|
includeChildProcessArgs?: boolean;
|
|
/**
|
|
* Whether to capture errors from worker threads.
|
|
*
|
|
* @default true
|
|
*/
|
|
captureWorkerErrors?: boolean;
|
|
}
|
|
/**
|
|
* Capture breadcrumbs and events for child processes and worker threads.
|
|
*/
|
|
export declare const childProcessIntegration: (options?: Options | undefined) => import("@sentry/core").Integration;
|
|
export {};
|
|
//# sourceMappingURL=childProcess.d.ts.map |