@sentry/wizard
Version:
Sentry wizard helping you to configure your project
10 lines (9 loc) • 560 B
TypeScript
import type { ProxifiedModule } from 'magicast';
import { type PartialBackwardsForwardsCompatibleSvelteConfig } from './svelte-config';
import { ProjectInfo } from './types';
export declare function createOrMergeSvelteKitFiles(projectInfo: ProjectInfo, svelteConfig: PartialBackwardsForwardsCompatibleSvelteConfig, setupForSvelteKitTracing: boolean): Promise<void>;
export declare function insertClientInitCall(dsn: string, originalHooksMod: ProxifiedModule<any>, selectedFeatures: {
performance: boolean;
replay: boolean;
logs: boolean;
}): void;