UNPKG

credl-parser-evaluator

Version:

TypeScript-based CREDL Parser and Evaluator that processes CREDL files and outputs complete Intermediate Representations

20 lines 666 B
import { Command } from 'commander'; /** * CREDL Init Command - Interactive CREDL project scaffolding * * This command provides an interactive way to create new CREDL projects * by guiding users through property type selection, basic configuration, * and generating appropriate template files. */ export interface InitCommandOptions { name?: string; type?: string; location?: string; output?: string; force?: boolean; quiet?: boolean; verbose?: boolean; } export declare function createInitCommand(): Command; export declare function executeInitCommand(options: InitCommandOptions): Promise<void>; //# sourceMappingURL=init.d.ts.map