1
0

data.js 222 B

123456789101112131415161718
  1. var
  2. /**
  3. * @type Slack
  4. **/
  5. SLACK;
  6. function Slack() {
  7. /** @type {number} */
  8. this.lastServerVersion = 0;
  9. }
  10. Slack.prototype.update = function(data) {
  11. console.log(data);
  12. }
  13. SLACK = new Slack();