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