UNPKG

@slack/client

Version:

A library for creating a Slack client

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