()
| 16 | export interface PromptInterface { |
| 17 | question(query: string, callback: (answer: string) => void): void; |
| 18 | close(): void; |
| 19 | once(event: 'close' | 'SIGINT', listener: () => void): this; |
| 20 | removeListener(event: 'close' | 'SIGINT', listener: () => void): this; |
| 21 | } |
no outgoing calls