UNPKG

ig-trader

Version:

A client to programmatically spreadbet with IG

16 lines (13 loc) 242 B
class IG { constructor(apiKey, isDemo) { this.apiKey = apiKey this.isDemo = isDemo } login(username, password) { return true } post(route, apiVersion, object) { return true } } module.exports = IG