UNPKG

@azure/ai-text-analytics

Version:
11 lines 591 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. import { makeAnalyzeSentimentErrorResult, makeAnalyzeSentimentResult } from "./analyzeSentimentResult"; import { combineSuccessfulAndErroneousDocumentsWithStatisticsAndModelVersion } from "./textAnalyticsResult"; /** * @internal */ export function makeAnalyzeSentimentResultArray(input, response) { return combineSuccessfulAndErroneousDocumentsWithStatisticsAndModelVersion(input, response, makeAnalyzeSentimentResult, makeAnalyzeSentimentErrorResult); } //# sourceMappingURL=analyzeSentimentResultArray.js.map