{"version":3,"sources":["src/sdk/NoMatchReason.ts"],"names":[],"mappings":"AAGA;;;GAGG;AACH,oBAAY,aAAa;IAErB;;;OAGG;IACH,aAAa,IAAA;IAEb;;;;OAIG;IACH,qBAAqB,IAAA;IAErB;;;;OAIG;IACH,oBAAoB,IAAA;CACvB","file":"NoMatchReason.d.ts","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT license.\n\n/**\n * Defines the possible reasons a recognition result might not be recognized.\n * @class NoMatchReason\n */\nexport enum NoMatchReason {\n\n    /**\n     * Indicates that speech was detected, but not recognized.\n     * @member NoMatchReason.NotRecognized\n     */\n    NotRecognized,\n\n    /**\n     * Indicates that the start of the audio stream contained only silence,\n     * and the service timed out waiting for speech.\n     * @member NoMatchReason.InitialSilenceTimeout\n     */\n    InitialSilenceTimeout,\n\n    /**\n     * Indicates that the start of the audio stream contained only noise,\n     * and the service timed out waiting for speech.\n     * @member NoMatchReason.InitialBabbleTimeout\n     */\n    InitialBabbleTimeout,\n}\n"]}