UNPKG

655 BTypeScriptView Raw
1/**
2 * Describes the possible arguments that
3 * could be used when calling the CLI
4 */
5export interface CliArgs {
6 /** The base reference used by danger PR (e.g. not master) */
7 base: string;
8 /** For debugging */
9 verbose: string;
10 /** Used by danger-js o allow having a custom CI */
11 externalCiProvider: string;
12 /** Use SDTOUT instead of posting to the code review side */
13 textOnly: string;
14 /** A custom path for the dangerfile (can also be a remote reference) */
15 dangerfile: string;
16 /** So you can have many danger runs in one code review */
17 id: string;
18 /** Use staged changes */
19 staging?: boolean;
20}