@sentry/wizard
Version:
Sentry wizard helping you to configure your project
11 lines (8 loc) • 310 B
text/typescript
import type { Answers } from 'inquirer';
import { getCurrentIntegration } from '../Helper/Wizard';
import { BaseStep } from './BaseStep';
export class ConfigureProject extends BaseStep {
public async emit(answers: Answers): Promise<Answers> {
return getCurrentIntegration(answers).emit(answers);
}
}