UNPKG
trm-commons
Version:
latest (3.4.2)
3.4.2
3.4.1
3.4.0
3.3.2
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.0
2.0.0
1.1.0
1.0.0
TRM (Transport Request Manager) Shared library
www.trmregistry.com
RegestaItalia/trm-commons
trm-commons
/
dist
/
inquirer
/
IInquirer.d.ts
8 lines
(7 loc)
•
227 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Question
}
from
"./Question"
;
export
interface
IInquirer
{
prompt
:
(
arg1
:
Question
|
Question
[]
) =>
Promise
<
any
>;
setPrefix
:
(
text
:
string
) =>
void
;
removePrefix
:
() =>
void
;
getPrefix
:
() =>
string
; }