UNPKG

@tryforge/forgescript

Version:

ForgeScript is a comprehensive package that empowers you to effortlessly interact with Discord's API. It ensures scripting remains easy to learn and consistently effective.

21 lines 798 B
import { Poll, PollAnswer } from "discord.js"; export declare enum PollProperty { question = "question", layoutType = "layoutType", answers = "answers", answerCount = "answerCount", totalVotes = "totalVotes", expiresTimestamp = "expiresTimestamp", allowMultiselect = "allowMultiselect", resultsFinalized = "resultsFinalized" } export declare const PollProperties: import("../functions/defineProperties").Properties<typeof PollProperty, Poll>; export declare enum PollAnswerProperty { id = "id", text = "text", emoji = "emoji", voteCount = "voteCount", messageID = "messageID" } export declare const PollAnswerProperties: import("../functions/defineProperties").Properties<typeof PollAnswerProperty, PollAnswer>; //# sourceMappingURL=poll.d.ts.map