@@ -541,7 +541,7 @@ export interface CommitizenGitOptions {
541
541
/**
542
542
* pin type item the top of the types list (match item value)
543
543
*/
544
- defaultType ?: string
544
+ defaultType ?: string | undefined
545
545
546
546
/**
547
547
* Whether to use display default value in custom scope
@@ -551,37 +551,37 @@ export interface CommitizenGitOptions {
551
551
* 2. `string[]` for checkbox mode will default-select the options whose values match those within the `scopes` range list.
552
552
* @usage When you want to use default, just keyboard `Enter` it
553
553
*/
554
- defaultScope ?: string | string [ ]
554
+ defaultScope ?: string | string [ ] | undefined
555
555
556
556
/**
557
557
* default value show subject template prompt
558
558
*
559
559
* @usage If you want to use template complete. just keyboard `Tab` or `Right Arrow` it
560
560
* @usage If you want to use default, just keyboard `Enter` it
561
561
*/
562
- defaultSubject ?: string
562
+ defaultSubject ?: string | undefined
563
563
564
564
/**
565
565
* default value show body and BREAKINGCHANGES template prompt
566
566
*
567
567
* @usage If you want to use template complete. just keyboard `Tab` or `Right Arrow` it
568
568
* @usage When you want to use default, just keyboard `Enter` it
569
569
*/
570
- defaultBody ?: string
570
+ defaultBody ?: string | undefined
571
571
/**
572
572
* default value show issuePrefixes custom template prompt
573
573
*
574
574
* @usage If you want to use template complete. just keyboard `Tab` or `Right Arrow` it
575
575
* @usage When you want to use default, just keyboard `Enter` it
576
576
*/
577
- defaultFooterPrefix ?: string
577
+ defaultFooterPrefix ?: string | undefined
578
578
/**
579
579
* default value show issue foot template prompt
580
580
*
581
581
* @usage If you want to use template complete. just keyboard `Tab` or `Right Arrow` it
582
582
* @usage When you want to use default, just keyboard `Enter` it
583
583
*/
584
- defaultIssues ?: string
584
+ defaultIssues ?: string | undefined
585
585
586
586
/**
587
587
* Whether to use GPG sign commit message (git commit -S -m)
0 commit comments