UNPKG

trm-commons

Version:

TRM (Transport Request Manager) Shared library

8 lines (7 loc) 227 B
import { Question } from "./Question"; export interface IInquirer { prompt: (arg1: Question | Question[]) => Promise<any>; setPrefix: (text: string) => void; removePrefix: () => void; getPrefix: () => string; }