1 | import { Command, Option } from "command-line-application";
|
2 | import { ApiOptions, GlobalOptions, ICanaryOptions, IChangelogOptions, ICommentOptions, ICreateLabelsOptions, ILabelOptions, IPRBodyOptions, IPRCheckOptions, IPRStatusOptions, IReleaseOptions, IShipItOptions, IVersionOptions } from "@auto-it/core";
|
3 | export declare type Flags = keyof GlobalOptions | keyof ICreateLabelsOptions | keyof ILabelOptions | keyof IPRCheckOptions | keyof IPRStatusOptions | keyof ICommentOptions | keyof IPRBodyOptions | keyof IReleaseOptions | keyof IVersionOptions | keyof IShipItOptions | keyof IChangelogOptions | keyof ICanaryOptions;
|
4 | interface AutoOption extends Option {
|
5 |
|
6 | config?: boolean;
|
7 | }
|
8 | interface AutoCommand extends Command {
|
9 |
|
10 | options?: AutoOption[];
|
11 | }
|
12 | export declare const commands: AutoCommand[];
|
13 |
|
14 | export default function parseArgs(testArgs?: string[]): never[] | [string, ApiOptions];
|
15 | export {};
|
16 |
|
\ | No newline at end of file |