@sentry/wizard
Version:
Sentry wizard helping you to configure your project
16 lines (15 loc) • 543 B
TypeScript
import type { Answers } from 'inquirer';
import type { Args } from '../../Constants';
import { SentryCli } from '../../Helper/SentryCli';
import { BaseIntegration } from './BaseIntegration';
import { Config } from '../../Types';
export declare class Electron extends BaseIntegration {
protected _argv: Args;
protected _sentryCli: SentryCli;
constructor(_argv: Args);
emit(answers: Answers & {
config?: Config;
}): Promise<Answers>;
shouldConfigure(_answers: Answers): Promise<Answers>;
private _checkDep;
}