UNPKG

mindee

Version:

Mindee Client Library for Node.js

10 lines (9 loc) 420 B
import { FieldConfidence } from "./fieldConfidence.js"; import { StringDict } from "../../../../parsing/stringDict.js"; import { FieldLocation } from "./fieldLocation.js"; export declare abstract class BaseField { protected _indentLevel: number; confidence: FieldConfidence | undefined; locations: Array<FieldLocation> | undefined; protected constructor(rawResponse: StringDict, indentLevel?: number); }