@modyo/cli
Version:
Modyo CLI Command line to expose local development tools
20 lines (19 loc) • 970 B
TypeScript
import { Command } from '@oclif/core';
export default class Get extends Command {
static readonly summary = "Pull a widget from our catalog into a new directory";
static readonly description = "In general, the `get` command is used to obtain a boilerplate widget.";
static readonly examples: (string | {
description: string;
command: string;
})[];
static readonly flags: {
force: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
organization: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
};
static readonly args: {
name: import("@oclif/core/lib/interfaces/parser").Arg<string, Record<string, unknown>>;
directory: import("@oclif/core/lib/interfaces/parser").Arg<string | undefined, Record<string, unknown>>;
};
run(): Promise<void>;
}