@eddye68/studio-client
Version:
The AWS service Studio client
57 lines (56 loc) • 1.95 kB
JavaScript
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/model/wfl/page.ts
var page_exports = {};
__export(page_exports, {
Page: () => Page
});
module.exports = __toCommonJS(page_exports);
var Page = class {
constructor(Width = null, Height = null, PageNumber = null, PageOrder = null, Files = null, Edition = null, Master = null, Instance = null, PageSequence = null, Renditions = null, Orientation = null) {
this.__classname__ = "Page";
this.Width = null;
this.Height = null;
this.PageNumber = null;
this.PageOrder = null;
this.Files = null;
this.Edition = null;
this.Master = null;
this.Instance = null;
this.PageSequence = null;
this.Renditions = null;
this.Orientation = null;
this.Width = Width;
this.Height = Height;
this.PageNumber = PageNumber;
this.PageOrder = PageOrder;
this.Files = Files;
this.Edition = Edition;
this.Master = Master;
this.Instance = Instance;
this.PageSequence = PageSequence;
this.Renditions = Renditions;
this.Orientation = Orientation;
}
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Page
});
//# sourceMappingURL=page.js.map