@azure/ai-text-analytics
Version:
An isomorphic client library for the Azure Text Analytics service.
11 lines • 640 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import { makeRecognizeLinkedEntitiesResult, makeRecognizeLinkedEntitiesErrorResult } from "./recognizeLinkedEntitiesResult";
import { combineSuccessfulAndErroneousDocumentsWithStatisticsAndModelVersion } from "./textAnalyticsResult";
/**
* @internal
*/
export function makeRecognizeLinkedEntitiesResultArray(input, response) {
return combineSuccessfulAndErroneousDocumentsWithStatisticsAndModelVersion(input, response, makeRecognizeLinkedEntitiesResult, makeRecognizeLinkedEntitiesErrorResult);
}
//# sourceMappingURL=recognizeLinkedEntitiesResultArray.js.map