mindee
Version:
Mindee Client Library for Node.js
16 lines (15 loc) • 468 B
TypeScript
import { Field } from "./field";
import { BaseFieldConstructor } from "./base";
/**
* A company registration item.
*/
export declare class CompanyRegistrationField extends Field {
/** Registration identifier. */
value?: string;
/** Type of company registration. */
type: string;
constructor({ prediction, valueKey, reconstructed, pageId, }: BaseFieldConstructor);
toTableLine(): string;
toString(): string;
private printableValues;
}