type2docfx
Version:
A tool to convert json format output from TypeDoc to universal reference model for DocFx to consume.
16 lines (14 loc) • 363 B
text/typescript
/**
* @module botbuilder-ai
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/** A number together with units returned by a recognizer. */
export interface NumberWithUnits {
/** A recognized number if any. */
number?: number;
/** Units for the number. */
units: string;
}