@sentry/wizard
Version:
Sentry wizard helping you to configure your project
10 lines (9 loc) • 348 B
TypeScript
import { Answers } from 'inquirer';
import { BaseIntegration } from './BaseIntegration';
import { Args } from '../../Constants';
export declare class Android extends BaseIntegration {
protected _argv: Args;
constructor(_argv: Args);
emit(_answers: Answers): Promise<Answers>;
shouldConfigure(_answers: Answers): Promise<Answers>;
}