UNPKG

@sentry/wizard

Version:

Sentry wizard helping you to configure your project

37 lines (36 loc) 1.08 kB
/** Key value should be the same here */ export declare enum Integration { reactNative = "reactNative", cordova = "cordova", electron = "electron", nextjs = "nextjs", sveltekit = "sveltekit", sourcemaps = "sourcemaps" } /** Key value should be the same here */ export declare enum Platform { ios = "ios", android = "android" } export declare function getPlatformChoices(): any[]; export declare function getPlatformDescription(type: string): string; export declare function getIntegrationDescription(type: string): string; export declare function mapIntegrationToPlatform(type: string): string | undefined; type IntegrationChoice = { name: string; value: string; }; export declare function getIntegrationChoices(): IntegrationChoice[]; export interface Args { url: string; debug: boolean; uninstall: boolean; integration: Integration; platform: Platform[]; skipConnect: boolean; quiet: boolean; signup: boolean; promoCode?: string; } export declare const DEFAULT_URL = "https://sentry.io/"; export {};