UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
19 lines (18 loc) 367 B
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; }