UNPKG

@sentry/wizard

Version:

Sentry wizard helping you to configure your project

15 lines (14 loc) 428 B
import type { Answers } from 'inquirer'; import { BaseStep } from './BaseStep'; import { Config } from '../Types'; export declare class PromptForParameters extends BaseStep { emit(answers: Answers & { config?: Config; }): Promise<Answers & Config>; private _getFullUrl; private _getDSNKeyUrl; private _shouldAsk; private _validateAuthToken; private _validateSlug; private _validateDSN; }