aahook
Version:
A CLI tool that displays ASCII art when commands succeed or fail
22 lines • 567 B
TypeScript
/**
* Display ASCII art from file
*/
export declare function showArt(artFile: string | undefined): void;
/**
* Load art file content
* @returns Art content or null if not found
*/
export declare function loadArtFile(filePath: string): string | null;
/**
* Display error message
*/
export declare function showError(message: string): void;
/**
* Display info message
*/
export declare function showInfo(message: string): void;
/**
* Display success message
*/
export declare function showSuccess(message: string): void;
//# sourceMappingURL=display.d.ts.map