From 46007ce4bcaf84372801019857e2aafe018f7a8d Mon Sep 17 00:00:00 2001 From: Nicolas Stepien <567105+nstepien@users.noreply.github.com> Date: Thu, 7 May 2020 19:47:05 +0100 Subject: [PATCH 1/5] Update wait-for-element.d.ts --- types/wait-for-element.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/wait-for-element.d.ts b/types/wait-for-element.d.ts index f21fb112..4fe1de0e 100644 --- a/types/wait-for-element.d.ts +++ b/types/wait-for-element.d.ts @@ -1,3 +1,3 @@ -import { waitForOptions } from "wait-for"; +import { waitForOptions } from "./wait-for"; export function waitForElement(callback: () => T, options?: waitForOptions): Promise; From 84cb1f18a09b6c0f06e898c87889a3a2a7ab8562 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien <567105+nstepien@users.noreply.github.com> Date: Thu, 7 May 2020 19:47:51 +0100 Subject: [PATCH 2/5] Update wait-for-element-to-be-removed.d.ts --- types/wait-for-element-to-be-removed.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/wait-for-element-to-be-removed.d.ts b/types/wait-for-element-to-be-removed.d.ts index 42a891ac..b6b1e1bb 100644 --- a/types/wait-for-element-to-be-removed.d.ts +++ b/types/wait-for-element-to-be-removed.d.ts @@ -1,4 +1,4 @@ -import { waitForOptions } from "wait-for"; +import { waitForOptions } from "./wait-for"; export function waitForElementToBeRemoved( callback: (() => T) | T, From 1156a183b827382d7bea325b0499966b8851cdf2 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien <567105+nstepien@users.noreply.github.com> Date: Thu, 7 May 2020 19:48:34 +0100 Subject: [PATCH 3/5] Update wait-for-dom-change.d.ts --- types/wait-for-dom-change.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/wait-for-dom-change.d.ts b/types/wait-for-dom-change.d.ts index 2fe72c10..813437f4 100644 --- a/types/wait-for-dom-change.d.ts +++ b/types/wait-for-dom-change.d.ts @@ -1,3 +1,3 @@ -import { waitForOptions } from "index"; +import { waitForOptions } from "./wait-for"; export function waitForDomChange(options?: waitForOptions): Promise; From e532cefa97ec3211abb2ca70b03a889c000143e4 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien <567105+nstepien@users.noreply.github.com> Date: Thu, 7 May 2020 19:49:23 +0100 Subject: [PATCH 4/5] Update queries.d.ts --- types/queries.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/queries.d.ts b/types/queries.d.ts index 6f8633ce..970956a5 100644 --- a/types/queries.d.ts +++ b/types/queries.d.ts @@ -1,6 +1,6 @@ import { Matcher, MatcherOptions } from './matches'; import { SelectorMatcherOptions } from './query-helpers'; -import { waitForOptions } from 'wait-for'; +import { waitForOptions } from './wait-for'; export type QueryByBoundAttribute = ( container: HTMLElement, From 9e0cb20f8fa20a1f1dba3643f5b0f736ccb8a05e Mon Sep 17 00:00:00 2001 From: Nicolas Stepien <567105+nstepien@users.noreply.github.com> Date: Thu, 7 May 2020 19:50:12 +0100 Subject: [PATCH 5/5] Update get-queries-for-element.d.ts --- types/get-queries-for-element.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/types/get-queries-for-element.d.ts b/types/get-queries-for-element.d.ts index 90e5626d..b93adfe1 100644 --- a/types/get-queries-for-element.d.ts +++ b/types/get-queries-for-element.d.ts @@ -1,4 +1,3 @@ -import { Matcher } from './matches'; import * as queries from './queries'; export type BoundFunction = T extends (