File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,28 +28,28 @@ export default {
28
28
} ,
29
29
boolVariation : function (
30
30
identifier : string ,
31
- target : Target ,
31
+ target ? : Target ,
32
32
defaultValue = false ,
33
33
) : Promise < boolean > {
34
34
return this . instance . boolVariation ( identifier , target , defaultValue ) ;
35
35
} ,
36
36
stringVariation : function (
37
37
identifier : string ,
38
- target : Target ,
38
+ target ? : Target ,
39
39
defaultValue = '' ,
40
40
) : Promise < string > {
41
41
return this . instance . stringVariation ( identifier , target , defaultValue ) ;
42
42
} ,
43
43
numberVariation : function (
44
44
identifier : string ,
45
- target : Target ,
45
+ target ? : Target ,
46
46
defaultValue = 0 ,
47
47
) : Promise < number > {
48
48
return this . instance . numberVariation ( identifier , target , defaultValue ) ;
49
49
} ,
50
50
jsonVariation : function (
51
51
identifier : string ,
52
- target : Target ,
52
+ target ? : Target ,
53
53
defaultValue = '' ,
54
54
) : Promise < Record < string , unknown > > {
55
55
return this . instance . jsonVariation ( identifier , target , defaultValue ) ;
You can’t perform that action at this time.
0 commit comments