UNPKG

sketch-json-parse

Version:

sketch-json解析

20 lines (19 loc) 847 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @description 段落文本分布方式 * @enum {number} */ var SKAlignment; (function (SKAlignment) { SKAlignment[SKAlignment["Left"] = 0] = "Left"; SKAlignment[SKAlignment["Right"] = 1] = "Right"; SKAlignment[SKAlignment["Center"] = 2] = "Center"; SKAlignment[SKAlignment["Justify"] = 3] = "Justify"; })(SKAlignment || (SKAlignment = {})); var SKTextTransformAttribute; (function (SKTextTransformAttribute) { SKTextTransformAttribute[SKTextTransformAttribute["Normal"] = 0] = "Normal"; SKTextTransformAttribute[SKTextTransformAttribute["LowerCase"] = 1] = "LowerCase"; SKTextTransformAttribute[SKTextTransformAttribute["UpperCase"] = 2] = "UpperCase"; // 转成小写 })(SKTextTransformAttribute || (SKTextTransformAttribute = {}));