@sap-ux/inquirer-common 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +5 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type IMessageSeverity } from '@sap-devx/yeoman-ui-types';
|
|
2
|
-
import type { Answers, ConfirmQuestion as BaseConfirmQuestion, InputQuestion as BaseInputQuestion, ListQuestion as BaseListQuestion, ListChoiceOptions, PromptFunction, PromptModule, Question } from 'inquirer';
|
|
2
|
+
import type { Answers, ConfirmQuestion as BaseConfirmQuestion, InputQuestion as BaseInputQuestion, ListQuestion as BaseListQuestion, CheckboxQuestion as BaseCheckBoxQuestion, ListChoiceOptions, PromptFunction, PromptModule, Question } from 'inquirer';
|
|
3
3
|
export interface UI5VersionChoice extends ListChoiceOptions {
|
|
4
4
|
/**
|
|
5
5
|
* UI5 semantic version
|
|
@@ -62,4 +62,8 @@ export interface InputQuestion<A extends Answers = Answers> extends BaseInputQue
|
|
|
62
62
|
name: YUIQuestion['name'];
|
|
63
63
|
guiOptions?: YUIQuestion['guiOptions'];
|
|
64
64
|
}
|
|
65
|
+
export interface CheckBoxQuestion<A extends Answers = Answers> extends BaseCheckBoxQuestion<A> {
|
|
66
|
+
name: YUIQuestion['name'];
|
|
67
|
+
guiOptions?: YUIQuestion['guiOptions'];
|
|
68
|
+
}
|
|
65
69
|
//# sourceMappingURL=types.d.ts.map
|
package/package.json
CHANGED