type2docfx
Version:
A tool to convert json format output from TypeDoc to universal reference model for DocFx to consume.
20 lines (19 loc) • 607 B
TypeScript
/**
* @module botbuilder-ai
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/** Strongly typed information corresponding to LUIS $instance value. */
export interface InstanceData {
/** 0-based index in the analyzed text for where entity starts. */
startIndex: number;
/** 0-based index of the first character beyond the recognized entity. */
endIndex: number;
text: string;
/** Optional confidence in the recognition. */
score?: number;
/** Any extra properties */
[propName: string]: any;
}