Closed pxmage closed 5 years ago
I tried to create a Dubbo object following the document
// create dubbo object const dubbo = new Dubbo<typeof service>({ application: {name: 'node-dubbo'}, // zookeeper address register: 'localhost:2181', service, });
However, typescript told me that I need to pass a dubboSetting to the constructor, which is not listed on the document.
dubboSetting
What am I supposed to pass to it?
found it here https://github.com/apache/dubbo-js/releases/tag/dubbo2.js%402.3.5
@reallyimeric Thank you for the reply. ☺
I tried to create a Dubbo object following the document
However, typescript told me that I need to pass a
dubboSetting
to the constructor, which is not listed on the document.What am I supposed to pass to it?