@syntropysoft/praetorian
Version:
Praetorian CLI – A universal multi-environment configuration validator for DevSecOps teams. Validate, compare, and secure YAML/ENV files with ease.
37 lines • 753 B
TypeScript
export declare class CLILogger {
private verbose;
constructor(verbose?: boolean);
/**
* Log info message
*/
info(message: string, data?: any): void;
/**
* Log success message
*/
success(message: string): void;
/**
* Log warning message
*/
warn(message: string): void;
/**
* Log error message
*/
error(message: string, error?: any): void;
/**
* Log debug message (only in verbose mode)
*/
debug(message: string, data?: any): void;
/**
* Log banner
*/
banner(): void;
/**
* Log help information
*/
help(): void;
/**
* Log version information
*/
version(): void;
}
//# sourceMappingURL=CLILogger.d.ts.map