UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

15 lines (13 loc) 253 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ /** * Represents a Fact. */ export interface Fact { /** The key of the fact. */ key: string; /** The value of the fact. */ value: string; }