class BasePlugin { constructor(config) { this.name = 'BasePlugin'; this.config = config; } test(input) { } result(input) { } } // export default BasePlugin; module.exports = BasePlugin;