UNPKG

mindee

Version:

Mindee Client Library for Node.js

13 lines (12 loc) 420 B
import { BaseInference } from "../../../v2/parsing/inference/baseInference.js"; import { SplitResult } from "./splitResult.js"; export class SplitInference extends BaseInference { constructor(serverResponse) { super(serverResponse); this.result = new SplitResult(serverResponse["result"]); } toString() { return (super.toString() + this.result.toString() + "\n"); } }