mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 15:56:24 +02:00
9 lines
260 B
TypeScript
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>;
|
|
}
|