Interface CalendarReactionTypes

interface CalendarReactionTypes {
    emoji: APIEmote;
    event: CalendarEvent | {
        channelID: string;
        guild: Guild | {
            id?: string;
        };
        id: number;
    };
    reactor: Member | {
        id: string;
    };
}

Properties

Properties

emoji: APIEmote
event: CalendarEvent | {
    channelID: string;
    guild: Guild | {
        id?: string;
    };
    id: number;
}

Type declaration

  • channelID: string
  • guild: Guild | {
        id?: string;
    }
  • id: number
reactor: Member | {
    id: string;
}

Type declaration

  • id: string