pdf-visual-diff
Version:
Visual Regression Testing for PDFs in JavaScript
12 lines • 335 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Dpi = void 0;
/**
* Enum representing predefined DPI (Dots Per Inch) values.
*/
var Dpi;
(function (Dpi) {
Dpi[Dpi["Low"] = 72] = "Low";
Dpi[Dpi["High"] = 144] = "High";
})(Dpi || (exports.Dpi = Dpi = {}));
//# sourceMappingURL=types.js.map