UNPKG

@twurple/eventsub-base

Version:

Base for the other Twurple EventSub packages

19 lines 700 B
import { type EventSubChannelPredictionOutcomeData } from './common/EventSubChannelPredictionOutcome.external'; /** * The status of the prediction. */ export type EventSubChannelPredictionEndStatus = 'resolved' | 'canceled'; /** @private */ export interface EventSubChannelPredictionEndEventData { id: string; broadcaster_user_id: string; broadcaster_user_login: string; broadcaster_user_name: string; title: string; winning_outcome_id: string | null; outcomes: EventSubChannelPredictionOutcomeData[]; status: EventSubChannelPredictionEndStatus; started_at: string; ended_at: string; } //# sourceMappingURL=EventSubChannelPredictionEndEvent.external.d.ts.map