| 81 | } |
| 82 | |
| 83 | export interface PromptBase { |
| 84 | /** |
| 85 | * Runs the prompt. |
| 86 | * |
| 87 | * @returns |
| 88 | * The result of the prompt. |
| 89 | */ |
| 90 | run(): Promise<any>; |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Provides the functionality to initialize new prompts. |
no outgoing calls
no test coverage detected