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) • 315 B
TypeScript
/**
* Copy Prompt Command
* Copies a specific prompt to the clipboard
*/
/**
* Copies a prompt to the clipboard
* @param promptId - The ID of the prompt to copy
* @returns Whether the prompt was found and copied
*/
declare const copyPrompt: (promptId: string) => Promise<boolean>;
export default copyPrompt;