@sentry/wizard
Version:
Sentry wizard helping you to configure your project
14 lines (13 loc) • 503 B
TypeScript
import type { Answers } from 'inquirer';
import type { Args } from '../../Constants';
import { BaseIntegration } from './BaseIntegration';
/**
* This class just redirects to the `sourcemaps-wizard.ts` flow
* for anyone calling the wizard without the '-i sveltekit' flag.
*/
export declare class SourceMapsShim extends BaseIntegration {
protected _argv: Args;
constructor(_argv: Args);
emit(_answers: Answers): Promise<Answers>;
shouldConfigure(_answers: Answers): Promise<Answers>;
}