var /** * @type Slack **/ SLACK; function Slack() { /** @type {number} */ this.lastServerVersion = 0; } Slack.prototype.update = function(data) { console.log(data); } SLACK = new Slack();