@syntropysoft/praetorian
Version:
Praetorian CLI – A universal multi-environment configuration validator for DevSecOps teams. Validate, compare, and secure YAML/ENV files with ease.
21 lines • 501 B
TypeScript
export interface ParsedCLIArgs {
command: string;
subcommand?: string;
config: string;
options: Record<string, any>;
}
export declare class CLIParser {
/**
* Parse command line arguments
*/
parse(args: string[]): ParsedCLIArgs;
/**
* Check if help is requested
*/
isHelpRequested(args: string[]): boolean;
/**
* Check if version is requested
*/
isVersionRequested(args: string[]): boolean;
}
//# sourceMappingURL=CLIParser.d.ts.map