@crstn/neos-cli
Version:
CLI for the Neos CMS.
15 lines (14 loc) • 469 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class Download extends Command {
static description: string;
static examples: string[];
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
neos_package_name: flags.IOptionFlag<string | undefined>;
composer_package_name: flags.IOptionFlag<string | undefined>;
};
static args: {
name: string;
}[];
run(): Promise<void>;
}