UNPKG

@kamuridesu/whatframework

Version:

A simple WhatsApp Bot Framework on top of Baileys

14 lines (12 loc) 233 B
interface VoteAggregation { name: string voters: Array<string> } interface PollVoteAggragation { pollName: string | null | undefined votes: VoteAggregation[] } export { VoteAggregation, PollVoteAggragation }