UNPKG

@debate300/bithumb-pro

Version:

A real-time cryptocurrency price tracker for Bithumb (Pro).

15 lines (14 loc) 365 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Exchange = void 0; // Abstract class for exchanges class Exchange { constructor(redrawCallback) { this.realTimeData = new Map(); this.redrawCallback = redrawCallback; } getData() { return this.realTimeData; } } exports.Exchange = Exchange;