UNPKG

botbuilder-dialogs-adaptive

Version:

Rule system for the Microsoft BotBuilder dialog system.

22 lines 549 B
/** * @module botbuilder-dialogs-adaptive */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { Entity } from 'botbuilder'; /** * Text entity base class. */ export declare class TextEntity implements Entity { type: string; text: string; /** * Initializes a new instance of the [TextEntity](xref:botbuilder-dialogs-adaptive.TextEntity) class. * * @param text The text value. */ constructor(text?: string); } //# sourceMappingURL=textEntity.d.ts.map