diff --git a/types/enzyme/index.d.ts b/types/enzyme/index.d.ts
index 101215462f..8cc8c07a89 100644
--- a/types/enzyme/index.d.ts
+++ b/types/enzyme/index.d.ts
@@ -54,22 +54,22 @@ export interface CommonWrapper
{
/**
* Returns whether or not the current wrapper has a node anywhere in it's render tree that looks like the one passed in.
*/
- contains(node: ReactElement | string): boolean;
+ contains(node: ReactElement | Array> | string): boolean;
/**
* Returns whether or not a given react element exists in the shallow render tree.
*/
- containsMatchingElement(node: ReactElement): boolean;
+ containsMatchingElement(node: ReactElement | Array>): boolean;
/**
* Returns whether or not all the given react elements exists in the shallow render tree
*/
- containsAllMatchingElements(nodes: Array>): boolean;
+ containsAllMatchingElements(nodes: Array> | Array>>): boolean;
/**
* Returns whether or not one of the given react elements exists in the shallow render tree.
*/
- containsAnyMatchingElements(nodes: Array>): boolean;
+ containsAnyMatchingElements(nodes: Array> | Array>>): boolean;
/**
* Returns whether or not the current render tree is equal to the given node, based on the expected value.