ms-types 0.0.50 → 0.0.51
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/package.json +1 -1
- package/types/action.d.ts +2 -2
package/package.json
CHANGED
package/types/action.d.ts
CHANGED
|
@@ -186,9 +186,9 @@ declare namespace action {
|
|
|
186
186
|
/**
|
|
187
187
|
* 创建 WebDriver Actions 构建器,支持链式调用构建复杂的多点触控动作
|
|
188
188
|
* @returns WDAActionBuilder 实例
|
|
189
|
-
* @example const builder = action.
|
|
189
|
+
* @example const builder = action.createBuilder()
|
|
190
190
|
*/
|
|
191
|
-
function
|
|
191
|
+
function createBuilder(): ActionBuilder;
|
|
192
192
|
|
|
193
193
|
/**
|
|
194
194
|
* ActionBuilder 构建器接口
|