@sentry/wizard
Version:
Sentry wizard helping you to configure your project
24 lines (23 loc) • 946 B
TypeScript
type SelectedSentryFeatures = {
performance: boolean;
replay: boolean;
logs: boolean;
};
export declare function getDefaultNuxtConfig(): string;
export declare function getNuxtModuleFallbackTemplate(options: {
org: string;
project: string;
url: string;
selfHosted: boolean;
}, shouldTopLevelImport: boolean): string;
export declare function getSentryConfigContents(dsn: string, config: 'client' | 'server', selectedFeatures: SelectedSentryFeatures): string;
export declare function getConfigBody(dsn: string, variant: 'client' | 'server', selectedFeatures: SelectedSentryFeatures): string;
export declare function getIndexRouteTemplate(): string;
export declare function getSentryExamplePageTemplate(options: {
url: string;
org: string;
projectId: string;
}): string;
export declare function getSentryExampleApiTemplate(): string;
export declare function getSentryErrorButtonTemplate(): string;
export {};