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 @@ -922,7 +922,7 @@ declare var describe: {
922
922
* @param {table } table of Test
923
923
*/
924
924
each (
925
- table : Array < Array < mixed >>
925
+ table : Array < Array < mixed > | mixed >
926
926
) : (
927
927
name : JestTestName ,
928
928
fn ?: ( ...args : Array < any > ) => ?Promise < mixed >
@@ -949,7 +949,7 @@ declare var it: {
949
949
* @param {table } table of Test
950
950
*/
951
951
each (
952
- table : Array < Array < mixed >>
952
+ table : Array < Array < mixed > | mixed >
953
953
) : (
954
954
name : JestTestName ,
955
955
fn ?: ( ...args : Array < any > ) => ?Promise < mixed >
@@ -967,7 +967,7 @@ declare var it: {
967
967
timeout ? : number
968
968
) : {
969
969
each (
970
- table : Array < Array < mixed >>
970
+ table : Array < Array < mixed > | mixed >
971
971
) : (
972
972
name : JestTestName ,
973
973
fn ?: ( ...args : Array < any > ) => ?Promise < mixed >
@@ -1003,7 +1003,7 @@ declare var it: {
1003
1003
* @param {table } table of Test
1004
1004
*/
1005
1005
each (
1006
- table : Array < Array < mixed >>
1006
+ table : Array < Array < mixed > | mixed >
1007
1007
) : (
1008
1008
name : JestTestName ,
1009
1009
fn ?: ( ...args : Array < any > ) => ?Promise < mixed >
You can’t perform that action at this time.
0 commit comments