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 ( 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, 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; 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, 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;