UNPKG

type2docfx

Version:

A tool to convert json format output from TypeDoc to universal reference model for DocFx to consume.

14 lines (13 loc) 309 B
/** * @module botbuilder-ai */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ export interface IntentData { /** Confidence in intent classification. */ score: number; /** Any extra properties */ [propName: string]: any; }