@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) • 404 B
TypeScript
import { ConversationReference, SentActivity } from '@microsoft/teams.api';
import { IEvent, ISender } from '../types';
/**
* the event emitted by a plugin
* when an activity is sent
*/
export interface IActivitySentEvent extends IEvent, ConversationReference {
/**
* the sender of the event
*/
sender: ISender;
/**
* the sent activity
*/
activity: SentActivity;
}