UNPKG

422 BTypeScriptView Raw
1/**
2 * Copyright (c) Microsoft Corporation. All rights reserved.
3 * Licensed under the MIT License.
4 */
5import { CLMemory } from './CLMemory';
6import * as BB from 'botbuilder';
7import { ScoredAction, EntityBase } from '@conversationlearner/models';
8export interface CLRecognizerResult {
9 scoredAction: ScoredAction;
10 clEntities: EntityBase[];
11 memory: CLMemory;
12 inTeach: boolean;
13 activity: BB.Activity;
14}