@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
11 lines • 355 B
TypeScript
/**
* The color of a prediction outcome, blue or pink.
*/
export type EventSubChannelPredictionColor = 'blue' | 'pink';
/** @private */
export interface EventSubChannelPredictionBeginOutcomeData {
id: string;
title: string;
color: EventSubChannelPredictionColor;
}
//# sourceMappingURL=EventSubChannelPredictionBeginOutcome.external.d.ts.map