UNPKG

@crstn/neos-cli

Version:
15 lines (14 loc) 469 B
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>; }