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