@dscodotco/theme-cli
Version:
A CLI tool for developing Shopify themes
19 lines (18 loc) • 488 B
TypeScript
/**
* @module commands/shopify
* @description Command definitions for working with Shopify
*/
import { Command } from "commander";
/**
* Creates and configures the shopify command group
*
* @returns The configured shopify command with all subcommands
*
* @example
* ```typescript
* // Add the shopify command to a parent command
* const program = new Command();
* program.addCommand(createShopifyCommand());
* ```
*/
export declare function createShopifyCommand(): Command;