hades-cli
Version:
Hades CLI developer tool
18 lines (17 loc) • 569 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class Seed extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
module: flags.IOptionFlag<string | undefined>;
boundedContext: flags.IOptionFlag<string | undefined>;
log: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
static args: {
name: string;
required: boolean;
description: string;
options: string[];
}[];
run(): Promise<void>;
}