@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
27 lines (26 loc) • 730 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { z } from 'zod';
/**
* Enum representing input hints.
*/
export declare enum InputHints {
/**
* Indicates that the bot is ready to accept input from the user.
*/
AcceptingInput = "acceptingInput",
/**
* Indicates that the bot is ignoring input from the user.
*/
IgnoringInput = "ignoringInput",
/**
* Indicates that the bot is expecting input from the user.
*/
ExpectingInput = "expectingInput"
}
/**
* Zod schema for validating an InputHints enum.
*/
export declare const inputHintsZodSchema: z.ZodEnum<["acceptingInput", "ignoringInput", "expectingInput"]>;