microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
19 lines (18 loc) • 367 B
TypeScript
import { Group } from "./Group";
/**
* Internal class for deserializing DGI V1 JSON into.
*/
export interface Dgi {
/**
* The Groups in the grammar.
*/
groups?: Group[];
/**
* The reference grammars.
*/
referenceGrammars?: string[];
/**
* The weight to be assigned to standalone DGI grammar
*/
bias?: number;
}