UNPKG

669 BTypeScriptView Raw
1import { Command, flags } from '@anycli/command';
2export default class Manifest extends Command {
3 static title: string;
4 static flags: {
5 out: flags.IOptionFlag<string | undefined>;
6 };
7 static args: {
8 name: string;
9 description: string;
10 default: string;
11 }[];
12 options: {
13 flags: {
14 out: any;
15 };
16 args: {
17 [name: string]: string;
18 };
19 argv: string[];
20 raw: ({
21 type: "arg";
22 input: string;
23 } | {
24 type: "flag";
25 flag: string;
26 input: string;
27 })[];
28 };
29 run(): Promise<void>;
30}