UNPKG

trm-commons

Version:

TRM (Transport Request Manager) Shared library

11 lines (10 loc) 319 B
import { Question } from "./Question"; import { IInquirer } from "./IInquirer"; export declare class CliInquirer implements IInquirer { private _prefix; constructor(); prompt(arg1: Question | Question[]): Promise<any>; setPrefix(text: string): void; removePrefix(): void; getPrefix(): string; }