@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
21 lines • 901 B
TypeScript
import { EventSubChannelChatBaseNotificationEvent } from './EventSubChannelChatBaseNotificationEvent.js';
import { type EventSubChannelChatNotificationSubTier } from './EventSubChannelChatNotificationEvent.external.js';
/**
* An EventSub event representing a sub notification in another channel's chat during a shared chat session.
*/
export declare class EventSubChannelChatSharedChatSubNotificationEvent extends EventSubChannelChatBaseNotificationEvent {
readonly type: "shared_chat_sub";
/**
* The tier of the subscription.
*/
get tier(): EventSubChannelChatNotificationSubTier;
/**
* Whether the subscription was "paid" for using Prime Gaming.
*/
get isPrime(): boolean;
/**
* The number of months the subscription is for.
*/
get durationMonths(): number;
}
//# sourceMappingURL=EventSubChannelChatSharedChatSubNotificationEvent.d.ts.map