SLineCapStyle.js 402 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.SLineCapStyle = void 0;
  4. var SLineCapStyle;
  5. (function (SLineCapStyle) {
  6. SLineCapStyle[SLineCapStyle["Butt"] = 0] = "Butt";
  7. SLineCapStyle[SLineCapStyle["Round"] = 1] = "Round";
  8. SLineCapStyle[SLineCapStyle["Square"] = 2] = "Square";
  9. })(SLineCapStyle = exports.SLineCapStyle || (exports.SLineCapStyle = {}));