UNPKG

@slack/client

Version:

A library for creating a Slack client

18 lines (10 loc) 271 B
/** * {@link https://api.slack.com/types/group|Group} */ var inherits = require('inherits'); var ChannelGroup = require('./channel-group'); function Group(opts) { ChannelGroup.call(this, 'Group', opts); } inherits(Group, ChannelGroup); module.exports = Group;