@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) • 437 B
TypeScript
import { Activity, IToken } from '@microsoft/teams.api';
import { IEvent, ISender } from '../types';
/**
* the event emitted by a plugin
* when an activity is received
*/
export interface IActivityEvent extends IEvent {
/**
* the sender of the event
*/
sender: ISender;
/**
* inbound request token
*/
token: IToken;
/**
* inbound request activity payload
*/
activity: Activity;
}