add walkers to pluginapi

This commit is contained in:
Jiiks 2018-08-25 22:34:18 +03:00
parent ad64743874
commit 977fd80d0c
1 changed files with 3 additions and 1 deletions

View File

@ -105,7 +105,9 @@ export default class PluginApi {
removeFromArray: (...args) => Utils.removeFromArray.apply(Utils, args),
defineSoftGetter: (...args) => Utils.defineSoftGetter.apply(Utils, args),
wait: (...args) => Utils.wait.apply(Utils, args),
until: (...args) => Utils.until.apply(Utils, args)
until: (...args) => Utils.until.apply(Utils, args),
findInTree: (...args) => Utils.findInTree.apply(Utils, args),
findInReactTree: (...args) => Utils.findInReactTree.apply(Utils, args)
};
}