UNPKG

html-telegram-bot-api

Version:
14 lines (12 loc) 234 B
class Command { /** * Command * @param {string|RegExp} trigger * @param {Array<Method>} methods */ constructor (trigger, methods) { this.trigger = trigger this.methods = methods } } module.exports = Command