UNPKG

hades-cli

Version:
16 lines (15 loc) 451 B
import 'reflect-metadata'; import { Command } from '@oclif/command'; export default class New extends Command { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; credentials: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; static args: { name: string; required: boolean; description: string; }[]; run(): Promise<void>; }