mindee
Version:
Mindee Client Library for Node.js
11 lines (10 loc) • 525 B
TypeScript
import { Inference, StringDict } from "../../v1/parsing/common/index.js";
export declare const COMMAND_GENERATED = "generated";
export interface ProductConfig<T extends Inference = Inference> {
displayName: string;
docClass: new (rawPrediction: StringDict) => T;
allWords: boolean;
async: boolean;
sync: boolean;
}
export declare const CLI_COMMAND_CONFIG: Map<string, ProductConfig<Inference<import("../../v1/parsing/common/index.js").Prediction, import("../../v1/parsing/common/index.js").Prediction>>>;