UNPKG

@microsoft/agents-hosting-teams

Version:

Microsoft 365 Agents SDK for JavaScript

13 lines (11 loc) 406 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Represents the types of events related to message reactions. * * - `reactionsAdded`: Indicates that reactions were added to a message. * - `reactionsRemoved`: Indicates that reactions were removed from a message. */ export type MessageReactionEvents = 'reactionsAdded' | 'reactionsRemoved'