Poll
import { DiscordHono, Poll } from 'discord-hono'
const app = new DiscordHono().command('poll', c => c.res({ poll: new Poll() .question('What is your favorite color?') .answers(['🔴', 'Red'], ['🟢', 'Green'], 'Blue', 'Yellow'), }),)
Method
const poll = new Poll() .question() .tyanswerse() .duration() .allow_multiselect() .layout_type()
Please refer to the Official Docs.