UNPKG

@microsoft/agents-activity

Version:

Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.

19 lines (17 loc) 280 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Represents a Thing entity. */ export interface Thing { /** * The type of the thing. */ type: string /** * The name of the thing. */ name: string }