@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
13 lines • 463 B
TypeScript
/**
* The type of hype train contribution. Can be "bits" or "subscription".
*/
export type EventSubChannelHypeTrainContributionType = 'bits' | 'subscription' | 'other';
/** @private */
export interface EventSubChannelHypeTrainContributionData {
user_id: string;
user_login: string;
user_name: string;
type: EventSubChannelHypeTrainContributionType;
total: number;
}
//# sourceMappingURL=EventSubChannelHypeTrainContribution.external.d.ts.map