From e359b2d43af017e6b99ee38bdc12785b64382504 Mon Sep 17 00:00:00 2001 From: Navy Date: Wed, 30 Sep 2020 19:25:04 +0300 Subject: [PATCH] exports --- structure/interfaces/Setting.js | 5 +++-- structure/interfaces/index.js | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/structure/interfaces/Setting.js b/structure/interfaces/Setting.js index 8e9ddb3..6974366 100644 --- a/structure/interfaces/Setting.js +++ b/structure/interfaces/Setting.js @@ -64,8 +64,9 @@ class Setting extends Component { * @returns {Object} * @memberof Resolver */ - resolveMethod(args, valid, existing, opts) { - return this.client.resolver.resolveMethod(args, valid, existing, opts); + resolveMethod() { + // eslint-disable-next-line prefer-rest-params + return this.client.resolver.resolveMethod(...arguments); } reason(executor) { diff --git a/structure/interfaces/index.js b/structure/interfaces/index.js index 13cfe86..efd3b20 100644 --- a/structure/interfaces/index.js +++ b/structure/interfaces/index.js @@ -6,5 +6,6 @@ module.exports = { Setting: require('./Setting.js'), Module: require('./Module.js'), Observer: require('./Observer.js'), - FilterSetting: require('./FilterSetting.js') + FilterSetting: require('./FilterSetting.js'), + BinaryTree: require('./BinaryTree.js') }; \ No newline at end of file