From 7c8c9c82013400a3fe0c677ea400763f525df251 Mon Sep 17 00:00:00 2001 From: Nick McCurdy Date: Wed, 16 Dec 2020 10:59:59 -0500 Subject: [PATCH] fix(types): allow all elements (#164) --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 1ad877a..7b954bb 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -10,7 +10,7 @@ import { export interface CTLMatcherOptions { timeout?: number - container?: HTMLElement | JQuery + container?: Element | JQuery } export type MatcherOptions = DTLMatcherOptions | CTLMatcherOptions