mindee
Version:
Mindee Client Library for Node.js
14 lines (13 loc) • 558 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PageOptionsOperation = void 0;
/**
* Operation to apply on the document, given the page indexes specified.
*/
var PageOptionsOperation;
(function (PageOptionsOperation) {
/** Only keep pages matching the provided indexes. */
PageOptionsOperation["KeepOnly"] = "KEEP_ONLY";
/** Remove pages matching the provided indexes. */
PageOptionsOperation["Remove"] = "REMOVE";
})(PageOptionsOperation || (exports.PageOptionsOperation = PageOptionsOperation = {}));