UNPKG

@slack/client

Version:

A library for creating a Slack client

18 lines (10 loc) 190 B
/** * */ var inherits = require('inherits'); var Model = require('./model'); function File(opts) { Model.call(this, 'File', opts); } inherits(File, Model); module.exports = File;