UNPKG

@microsoft/teams.apps

Version:

<p> <a href="https://www.npmjs.com/package/@microsoft/teams.apps" target="_blank"> <img src="https://img.shields.io/npm/v/@microsoft/teams.apps/latest" /> </a> <a href="https://www.npmjs.com/package/@microsoft/teams.apps?activeTab=code

21 lines (20 loc) 487 B
import { Activity, ConversationReference, IToken } from '@microsoft/teams.api'; import { ISender } from './sender'; /** * the event emitted by a plugin * when an activity is received */ export interface IPluginActivityEvent extends ConversationReference { /** * the sender */ readonly sender: ISender; /** * inbound request token */ readonly token: IToken; /** * inbound request activity payload */ readonly activity: Activity; }