@applitools/types
Advanced tools
Comparing version 1.0.10 to 1.0.11
@@ -6,2 +6,6 @@ # Changelog | ||
## 1.0.11 - 2021/9/1 | ||
- update universal `close` and `closeAllEyes` methods | ||
## 1.0.10 - 2021/8/31 | ||
@@ -14,3 +18,3 @@ | ||
- add types for newest spec driver methods for universal interface | ||
- add types for newest spec driver methods for universal interface | ||
## 1.0.8 - 2021/8/13 | ||
@@ -17,0 +21,0 @@ |
{ | ||
"name": "@applitools/types", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "applitools", |
@@ -27,2 +27,3 @@ import { Region, Size, TextRegion, DriverInfo, MatchResult, TestResult } from './data'; | ||
manager: Ref<EyesManager<TDriver, TElement, TSelector>>; | ||
throwErr?: boolean; | ||
}): Promise<TestResult[]>; | ||
@@ -51,6 +52,7 @@ request(name: 'Eyes.check', options: { | ||
eyes: Ref<Eyes<TElement, TSelector>>; | ||
}): Promise<TestResult>; | ||
throwErr?: boolean; | ||
}): Promise<TestResult[]>; | ||
request(name: 'Eyes.abort', options: { | ||
eyes: Ref<Eyes<TElement, TSelector>>; | ||
}): Promise<TestResult>; | ||
}): Promise<TestResult[]>; | ||
command(name: 'Driver.isEqualElements', handler: (options: { | ||
@@ -240,2 +242,3 @@ context: TContext; | ||
manager: Ref<EyesManager<TDriver, TElement, TSelector>>; | ||
throwErr?: boolean; | ||
}) => Promise<TestResult[]>): () => void; | ||
@@ -264,6 +267,7 @@ command(name: 'Eyes.check', handler: (options: { | ||
eyes: Ref<Eyes<TElement, TSelector>>; | ||
}) => Promise<TestResult>): () => void; | ||
throwErr?: boolean; | ||
}) => Promise<TestResult[]>): () => void; | ||
command(name: 'Eyes.abort', handler: (options: { | ||
eyes: Ref<Eyes<TElement, TSelector>>; | ||
}) => Promise<TestResult>): () => void; | ||
}) => Promise<TestResult[]>): () => void; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46768
719