@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
16 lines • 732 B
TypeScript
import { type EventSubChannelPollBeginChoiceData } from './common/EventSubChannelPollBeginChoice.external.js';
import { type EventSubChannelPollVoteTypeSettingsData } from './common/EventSubChannelPollVoteTypeSettings.external.js';
/** @private */
export interface EventSubChannelPollBeginEventData {
id: string;
broadcaster_user_id: string;
broadcaster_user_login: string;
broadcaster_user_name: string;
title: string;
choices: EventSubChannelPollBeginChoiceData[];
bits_voting: EventSubChannelPollVoteTypeSettingsData;
channel_points_voting: EventSubChannelPollVoteTypeSettingsData;
started_at: string;
ends_at: string;
}
//# sourceMappingURL=EventSubChannelPollBeginEvent.external.d.ts.map