Files
portfolio2023/node_modules/@poppinss/prompts/build/src/Emitter.d.ts
T
2023-11-24 22:35:41 +01:00

9 lines
260 B
TypeScript

import { Prompt } from './Base';
/**
* Use event emitter to emit different prompt events, which can be
* used to answer the prompts programmatically.
*/
export declare class EmitterPrompt extends Prompt {
protected prompt(options: any): Promise<any>;
}