1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.PDFPageInfo = void 0;
  4. /**
  5. * @interface PDFPageInfo
  6. */
  7. var PDFPageInfo = /** @class */ (function () {
  8. function PDFPageInfo() {
  9. }
  10. return PDFPageInfo;
  11. }());
  12. exports.PDFPageInfo = PDFPageInfo;
  13. (function (PDFPageInfo) {
  14. /**
  15. * The rotation of the page.
  16. * @readonly
  17. * @enum {string} PDFRotation
  18. */
  19. PDFPageInfo.PDFRotation = {
  20. /**
  21. * The page is displayed without rotation.
  22. */
  23. ROTATION0: 0,
  24. /**
  25. * The page is displayed 90 degrees clockwise.
  26. */
  27. ROTATION90: 90,
  28. /**
  29. * The page is displayed upside-down.
  30. */
  31. ROTATION180: 180,
  32. /**
  33. * The page is displayed 90 degrees counterclockwise.
  34. */
  35. ROTATION270: 270,
  36. };
  37. })(PDFPageInfo || (exports.PDFPageInfo = PDFPageInfo = {}));