How to use the puregram.KeyboardBuilder function in puregram

To help you get started, we’ve selected a few puregram examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github nitreojs / puregram / docs / examples / keyboards.js View on Github external
telegram.updates.hear('/keyboardbuilder', (context) => {
  return context.send('There\'s your keyboard!', {
    reply_markup: new KeyboardBuilder()
      .textButton('Button')
      .row()
      .textButton('Another button')
      .textButton('But there\'s more!')
      .row()
      .textButton('So')
      .textButton('many')
      .textButton('buttons!')
      .resize(),
  });
});