UNPKG

mindee

Version:

Mindee Client Library for Node.js

18 lines (17 loc) 610 B
"use strict"; 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 = ""; } async init() { throw new Error("not Implemented"); } } exports.InputSource = InputSource;