botas-express
    Preparing search index...

    Type Alias TeamsActivityType

    TeamsActivityType:
        | ActivityType
        | "event"
        | "conversationUpdate"
        | "messageUpdate"
        | "messageDelete"
        | "messageReaction"
        | "installationUpdate"

    Extended activity type strings for Teams and other Bot Service channels.

    Includes all core types plus channel-specific activity types commonly used in Microsoft Teams bots.

    bot.on('conversationUpdate', async (ctx) => {
    console.log('Members changed');
    });