doton
Version:
CLI tool to initialize development configurations for Cursor IDE and more
15 lines (13 loc) • 332 B
TypeScript
/**
* Show package version
*/
declare function showVersion(): Promise<void>;
/**
* Check if command is valid
*/
declare function isValidCommand(command: string | undefined): Promise<boolean>;
/**
* Initialize the selected configuration
*/
declare function init(): Promise<void>;
export { init, isValidCommand, showVersion };