UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

15 lines (14 loc) 304 B
import { CardAction } from '@microsoft/agents-activity'; /** * Represents a sign-in card. */ export interface SigninCard { /** * The text to display on the sign-in card. */ text?: string; /** * The buttons to include on the sign-in card. */ buttons: CardAction[]; }