@shopify/cli
Version:
A CLI tool to build for the Shopify platform
12 lines (11 loc) • 414 B
TypeScript
import Command from '@shopify/cli-kit/node/base-command';
/**
* This command is used to output all the banner UI components of the CLI.
* It's useful to test how they behave under different terminal sizes
* and to help update the documentation when they change.
*/
export default class KitchenSinkStatic extends Command {
static description: string;
static hidden: boolean;
run(): Promise<void>;
}