telegram-session-generator
Version:
🚀 A secure and easy-to-use CLI tool for generating Telegram session strings. Perfect for Telegram client development and automation projects.
35 lines • 763 B
TypeScript
/**
* Utility functions for CLI interactions
*/
export declare class CLIUtils {
private static rl;
/**
* Initialize readline interface
*/
static initReadline(): void;
/**
* Close readline interface
*/
static closeReadline(): void;
/**
* Prompt user for input
*/
static question(prompt: string): Promise<string>;
/**
* Display formatted message
*/
static log(message: string, type?: 'info' | 'success' | 'error' | 'warning'): void;
/**
* Display separator line
*/
static separator(): void;
/**
* Clear console
*/
static clear(): void;
/**
* Display header
*/
static header(title: string): void;
}
//# sourceMappingURL=utils.d.ts.map