/** * Created by Ivo Meißner on 30.08.17. */ import { flags } from '@oclif/command'; import { BaseCommand } from '../../base/base-command'; export default class ModuleCreateCommand extends BaseCommand { static command: string; static description: string; static args: { name: string; description: string; required: boolean; parse: (value: string) => string; }[]; static flags: { namespace: flags.IOptionFlag; label: flags.IOptionFlag; endpoint: flags.IOptionFlag; header: flags.IOptionFlag; dir: flags.IOptionFlag; }; run(): Promise; }