UNPKG

mindee

Version:

Mindee Client Library for Node.js

14 lines (13 loc) 506 B
import { StringDict } from "../../../parsing/stringDict.js"; import { ClassificationInference } from "./classificationInference.js"; import { BaseResponse } from "../../../v2/parsing/index.js"; export declare class ClassificationResponse extends BaseResponse { /** * The inference result for a classification utility request. */ inference: ClassificationInference; /** * @param serverResponse JSON response from the server. */ constructor(serverResponse: StringDict); }