UNPKG

@microsoft/agents-activity

Version:

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

31 lines (29 loc) 539 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Represents geographical coordinates. */ export interface GeoCoordinates { /** * The elevation of the location. */ elevation: number /** * The latitude of the location. */ latitude: number /** * The longitude of the location. */ longitude: number /** * The type of the geographical coordinates. */ type: string /** * The name of the geographical coordinates. */ name: string }