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

19 lines (18 loc) 601 B
import { ActivityParams, ConversationReference, SentActivity } from '@microsoft/teams.api'; import { IStreamer } from '../streamer'; import { IPlugin } from './plugin'; /** * a plugin that can send activities */ export interface ISender<TCustomEvents extends {} = {}> extends IPlugin<TCustomEvents> { /** * called by the `App` * to send an activity */ send(activity: ActivityParams, ref: ConversationReference): Promise<SentActivity>; /** * called by the `App` * to create a new activity stream */ createStream(ref: ConversationReference): IStreamer; }