@sentry/wizard
Version:
Sentry wizard helping you to configure your project
9 lines (8 loc) • 423 B
TypeScript
import type { Answers } from 'inquirer';
import type { Args } from '../Constants';
import type { IStep } from '../Steps/BaseStep';
import type { BaseIntegration } from '../Steps/Integrations/BaseIntegration';
export declare function getCurrentIntegration(answers: Answers): BaseIntegration;
export declare function startWizard<M extends IStep>(argv: Args, ...steps: Array<{
new (debug: Args): M;
}>): Promise<Answers>;