@axe-core/webdriverjs 4.6.2-alpha.378 → 4.6.2-alpha.380

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/index.d.ts CHANGED
@@ -1,6 +1,12 @@
1
1
  import { WebDriver } from 'selenium-webdriver';
2
- import { RunOptions, Spec, AxeResults, SerialFrameSelector } from 'axe-core';
3
- import { CallbackFunction, BuilderOptions } from './types';
2
+ import { AxeResults, SerialFrameSelector, RunOptions, Spec } from 'axe-core';
3
+
4
+ interface BuilderOptions {
5
+ noSandbox?: boolean;
6
+ logIframeErrors?: boolean;
7
+ }
8
+ declare type CallbackFunction = (error: Error | null, results: AxeResults | null) => void;
9
+
4
10
  declare class AxeBuilder {
5
11
  private driver;
6
12
  private axeSource;
@@ -74,4 +80,5 @@ declare class AxeBuilder {
74
80
  */
75
81
  private finishRun;
76
82
  }
77
- export default AxeBuilder;
83
+
84
+ export { AxeBuilder as default };