define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PdfLayoutType;
(function (PdfLayoutType) {
PdfLayoutType[PdfLayoutType["Paginate"] = 0] = "Paginate";
PdfLayoutType[PdfLayoutType["OnePage"] = 1] = "OnePage";
})(PdfLayoutType = exports.PdfLayoutType || (exports.PdfLayoutType = {}));
var PdfLayoutBreakType;
(function (PdfLayoutBreakType) {
PdfLayoutBreakType[PdfLayoutBreakType["FitPage"] = 0] = "FitPage";
PdfLayoutBreakType[PdfLayoutBreakType["FitElement"] = 1] = "FitElement";
PdfLayoutBreakType[PdfLayoutBreakType["FitColumnsToPage"] = 2] = "FitColumnsToPage";
})(PdfLayoutBreakType = exports.PdfLayoutBreakType || (exports.PdfLayoutBreakType = {}));
var PathPointType;
(function (PathPointType) {
PathPointType[PathPointType["Start"] = 0] = "Start";
PathPointType[PathPointType["Line"] = 1] = "Line";
PathPointType[PathPointType["Bezier3"] = 3] = "Bezier3";
PathPointType[PathPointType["Bezier"] = 3] = "Bezier";
PathPointType[PathPointType["PathTypeMask"] = 7] = "PathTypeMask";
PathPointType[PathPointType["DashMode"] = 16] = "DashMode";
PathPointType[PathPointType["PathMarker"] = 32] = "PathMarker";
PathPointType[PathPointType["CloseSubpath"] = 128] = "CloseSubpath";
})(PathPointType = exports.PathPointType || (exports.PathPointType = {}));
});
|