UNPKG

slack-client

Version:
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;