UNPKG

@sentry/wizard

Version:

Sentry wizard helping you to configure your project

13 lines (12 loc) 470 B
import type { Answers } from 'inquirer'; import type { Args } from '../../Constants'; import { SentryCli } from '../../Helper/SentryCli'; import { BaseIntegration } from './BaseIntegration'; export declare class Electron extends BaseIntegration { protected _argv: Args; protected _sentryCli: SentryCli; constructor(_argv: Args); emit(answers: Answers): Promise<Answers>; shouldConfigure(_answers: Answers): Promise<Answers>; private _checkDep; }