mindee
Version:
Mindee Client Library for Node.js
22 lines (21 loc) • 705 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InputSource = exports.INPUT_TYPE_BUFFER = exports.INPUT_TYPE_PATH = exports.INPUT_TYPE_BYTES = exports.INPUT_TYPE_BASE64 = exports.INPUT_TYPE_STREAM = void 0;
exports.INPUT_TYPE_STREAM = "stream";
exports.INPUT_TYPE_BASE64 = "base64";
exports.INPUT_TYPE_BYTES = "bytes";
exports.INPUT_TYPE_PATH = "path";
exports.INPUT_TYPE_BUFFER = "buffer";
class InputSource {
constructor() {
this.fileObject = "";
this.initialized = false;
}
async init() {
throw new Error("not Implemented");
}
isInitialized() {
return this.initialized;
}
}
exports.InputSource = InputSource;