(userOptions: Partial<IConstructorArgs> | string = {})
| 178 | }; |
| 179 | |
| 180 | constructor(userOptions: Partial<IConstructorArgs> | string = {}) { |
| 181 | |
| 182 | if (userOptions) { |
| 183 | this.setOptions(userOptions); |
| 184 | } |
| 185 | |
| 186 | } |
| 187 | |
| 188 | options(opt = {}): Binance { |
| 189 | // // return await this.setOptions(opt, callback); // keep this method for backwards compatibility |
nothing calls this directly
no test coverage detected