type2docfx
Version:
A tool to convert json format output from TypeDoc to universal reference model for DocFx to consume.
25 lines (20 loc) • 677 B
text/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;
//** Word broken and normalized text for the entity. */
text: string;
/** Optional confidence in the recognition. */
score?: number;
/** Any extra properties */
[propName: string] : any;
}