botbuilder-dialogs-adaptive
Version:
Rule system for the Microsoft BotBuilder dialog system.
23 lines (22 loc) • 572 B
TypeScript
/**
* @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