@shopify/cli
Version:
A CLI tool to build for the Shopify platform
14 lines (13 loc) • 458 B
TypeScript
import Command from '@shopify/cli-kit/node/base-command';
export default class HelpCommand extends Command {
static args: {
command: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
};
static description: string;
static usage: string;
static flags: {
'nested-commands': import("@oclif/core/interfaces").BooleanFlag<boolean>;
};
static strict: boolean;
run(): Promise<void>;
}