ailock
Version:
AI-Proof File Guard - Protect sensitive files from accidental AI modifications
25 lines • 721 B
TypeScript
/**
* Output information message (suppressed in quiet mode)
*/
export declare function info(message: string): void;
/**
* Output success message (suppressed in quiet mode)
*/
export declare function success(message: string): void;
/**
* Output warning message (always shown)
*/
export declare function warn(message: string): void;
/**
* Output error message (always shown)
*/
export declare function error(message: string): void;
/**
* Output debug message (only in debug mode, suppressed in quiet mode)
*/
export declare function debug(message: string): void;
/**
* Output raw message (always shown, for data output)
*/
export declare function raw(message: string): void;
//# sourceMappingURL=output.d.ts.map