File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
contentstack-auth/src/interfaces
contentstack-utilities/src/interfaces
contentstack/src/interfaces Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export interface InquirePayload {
1616 name : string ;
1717 message : string ;
1818 choices ?: Array < any > ;
19- transformer ?: Function ;
19+ transformer ?: ( value : any ) => any ;
2020}
2121
2222export interface User {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export interface InquirePayload {
1818 default ?: any ;
1919 message : string ;
2020 choices ?: Array < any > ;
21- transformer ?: Function ;
21+ transformer ?: ( value : any ) => any ;
2222 validate ?( input : any , answers ?: any ) : boolean | string | Promise < boolean | string > ;
2323 selectAll ?: boolean ;
2424 pageSize ?: number ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export interface InquirePayload {
99 name : string ;
1010 message : string ;
1111 choices ?: Array < any > ;
12- transformer ?: Function ;
12+ transformer ?: ( value : any ) => any ;
1313}
1414
1515export interface Region {
You can’t perform that action at this time.
0 commit comments