patrick-mades-dev-tools
Version:
A collection of development tools and utilities Made by Patrick Made for Patrick Made (but feel free to use it for your own projects)
12 lines (11 loc) • 297 B
TypeScript
/**
* Show Prompt Command
* Displays a specific prompt by ID
*/
/**
* Shows a specific prompt by ID
* @param promptId - The ID of the prompt to show
* @returns Whether the prompt was found and displayed
*/
declare const showPrompt: (promptId: string) => boolean;
export default showPrompt;