UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

19 lines (16 loc) 383 B
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. 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[] }