UNPKG

@dao-style/cli

Version:

CLI tool for DAO Style projects - providing project scaffolding, template generation and dependency management

21 lines (16 loc) 563 B
export { TemplateConfig as Template } from '@dao-style-template/shared'; import { Command } from 'commander'; declare function create(name: string, { initialBranch, local, allTemplates, answer, }: { initialBranch?: string; local?: boolean; allTemplates?: boolean; answer?: string[]; }): Promise<void>; interface UpgradeOptions { force?: boolean; local?: boolean; ignoreOrigin?: boolean; } declare function upgrade(options: UpgradeOptions): Promise<void>; declare function buildCLI(): Command; export { buildCLI, create, upgrade };