@microsoft/agents-copilotstudio-client
Version:
Microsoft Copilot Studio Client for JavaScript. Copilot Studio Client.
22 lines • 575 B
JavaScript
;
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AgentType = void 0;
/**
* Enum representing the type of agent.
*/
var AgentType;
(function (AgentType) {
/**
* Represents a published agent.
*/
AgentType["Published"] = "Published";
/**
* Represents a prebuilt agent.
*/
AgentType["Prebuilt"] = "Prebuilt";
})(AgentType || (exports.AgentType = AgentType = {}));
//# sourceMappingURL=agentType.js.map