UNPKG

@sentry/wizard

Version:

Sentry wizard helping you to configure your project

13 lines (12 loc) 393 B
import type { Answers } from 'inquirer'; import type { Args } from '../Constants'; export declare abstract class BaseStep implements IStep { protected _argv: Args; protected _isDebug: boolean; constructor(_argv: Args); debug(msg: unknown): void; abstract emit(answers: Answers): Promise<Answers>; } export interface IStep { emit(answers?: Answers): Promise<Answers>; }