@slack/client
Version:
A library for creating a Slack client
23 lines (16 loc) • 367 B
JavaScript
// Generated by CoffeeScript 1.10.0
(function() {
var Team;
Team = (function() {
function Team(_client, id, name, domain) {
this._client = _client;
this.id = id;
this.name = name;
this.domain = domain;
this.prefs = {};
}
return Team;
})();
module.exports = Team;
}).call(this);
//# sourceMappingURL=team.js.map