@ordojs/cli
Version:
Command-line interface for OrdoJS framework
15 lines • 369 B
TypeScript
/**
* @fileoverview OrdoJS CLI - Init command
*/
import { Command } from 'commander';
/**
* Register the init command
*/
export declare function registerInitCommand(program: Command): void;
/**
* Init command implementation
*/
export declare function initCommand(name: string, options: {
template: string;
}): Promise<void>;
//# sourceMappingURL=init.d.ts.map