UNPKG
@stacksjs/clapp
Version:
latest (0.2.0)
0.2.0
0.1.18
0.1.16
0.1.15
0.1.14
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
A toolkit for building CLI prompts in TypeScript.
github.com/stacksjs/clapp
stacksjs/clapp
@stacksjs/clapp
/
dist
/
prompts
/
confirm.d.ts
9 lines
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ }
from
'./common'
;
import
type
{
CommonOptions
}
from
'./common'
;
export
declare
function
confirm
(
opts
:
ConfirmOptions
):
void
;
export
declare
interface
ConfirmOptions
extends
CommonOptions
{
message
:
string
active
?:
string
inactive
?:
string
initialValue
?:
boolean
}