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