@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
17 lines (16 loc) • 415 B
TypeScript
import { ConversationReference, SentActivity } from '@microsoft/teams.api';
import { ISender } from './sender';
/**
* the event emitted by a plugin
* when an activity is sent
*/
export interface IPluginActivitySentEvent extends ConversationReference {
/**
* the sender of the activity
*/
readonly sender: ISender;
/**
* the sent activity
*/
readonly activity: SentActivity;
}