@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
16 lines • 528 B
TypeScript
/**
* The type of Power-up.
*/
export type EventSubChannelBitsUsePowerUpType = 'message_effect' | 'celebration' | 'gigantify_an_emote';
/** @private */
export interface EventSubChannelBitsUsePowerUpEmoteData {
id: string;
name: string;
}
/** @private */
export interface EventSubChannelBitsUsePowerUpData {
type: EventSubChannelBitsUsePowerUpType;
emote: EventSubChannelBitsUsePowerUpEmoteData | null;
message_effect_id: string | null;
}
//# sourceMappingURL=EventSubChannelBitsUsePowerUp.external.d.ts.map