@axe-core/watcher 2.0.0-next.bad55cbe → 2.0.0-next.badbbb81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cypress.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type Cypress from 'cypress';
2
- import { Configuration } from './util';
2
+ import { type Configuration } from './util';
3
3
  /**
4
4
  * Create a Cypress config that uses the axe Watcher extension.
5
5
  *
@@ -1,5 +1,5 @@
1
1
  import type { LaunchOptions, Page } from 'playwright-core';
2
- import { Configuration } from './util';
2
+ import { type Configuration } from './util';
3
3
  import Controller from './Controller';
4
4
  import { wrapBrowserContext } from './playwrightWrapping';
5
5
  /** Options for configuring Playwright and @axe-core/watcher. */
@@ -1,5 +1,5 @@
1
1
  import type { LaunchOptions, BrowserLaunchArgumentOptions, BrowserConnectOptions, Page } from 'puppeteer';
2
- import { Configuration } from './util';
2
+ import { type Configuration } from './util';
3
3
  import Controller from './Controller';
4
4
  export { wrapBrowserContext as wrapPuppeteer } from './puppeteerWrapping';
5
5
  declare type Options = LaunchOptions & BrowserLaunchArgumentOptions & BrowserConnectOptions;
package/dist/wdio.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Options } from '@wdio/types';
2
2
  import type { Browser, BrowserCommandsType, ElementCommandsType, RemoteOptions } from 'webdriverio';
3
- import { Configuration } from './util';
3
+ import { type Configuration } from './util';
4
4
  import Controller from './Controller';
5
5
  declare type Options = RemoteOptions & Configuration;
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  import type { WebDriver } from 'selenium-webdriver';
2
2
  import type { Options } from 'selenium-webdriver/chrome';
3
- import { Configuration } from './util';
3
+ import { type Configuration } from './util';
4
4
  import Controller from './Controller';
5
5
  interface WebDriverArgs extends Configuration {
6
6
  options?: Options;