jovo-cli
Version:
jovo command line tool (beta)
21 lines (20 loc) • 772 B
TypeScript
import { Command, flags } from '@oclif/command';
export declare class Get extends Command {
static description: string;
static examples: string[];
static flags: {
locale: flags.IOptionFlag<string | undefined>;
target: flags.IOptionFlag<string | undefined>;
stage: flags.IOptionFlag<string | undefined>;
build: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
reverse: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
overwrite: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
debug: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
static args: {
name: string;
options: string[];
required: boolean;
}[];
run(): Promise<void>;
}