File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,28 +28,28 @@ export default {
2828 } ,
2929 boolVariation : function (
3030 identifier : string ,
31- target : Target ,
31+ target ? : Target ,
3232 defaultValue = false ,
3333 ) : Promise < boolean > {
3434 return this . instance . boolVariation ( identifier , target , defaultValue ) ;
3535 } ,
3636 stringVariation : function (
3737 identifier : string ,
38- target : Target ,
38+ target ? : Target ,
3939 defaultValue = '' ,
4040 ) : Promise < string > {
4141 return this . instance . stringVariation ( identifier , target , defaultValue ) ;
4242 } ,
4343 numberVariation : function (
4444 identifier : string ,
45- target : Target ,
45+ target ? : Target ,
4646 defaultValue = 0 ,
4747 ) : Promise < number > {
4848 return this . instance . numberVariation ( identifier , target , defaultValue ) ;
4949 } ,
5050 jsonVariation : function (
5151 identifier : string ,
52- target : Target ,
52+ target ? : Target ,
5353 defaultValue = '' ,
5454 ) : Promise < Record < string , unknown > > {
5555 return this . instance . jsonVariation ( identifier , target , defaultValue ) ;
You can’t perform that action at this time.
0 commit comments