sketch-json-parse
Version:
sketch-json解析
14 lines (13 loc) • 526 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BackgroundRepeat = void 0;
/**
*
*/
var BackgroundRepeat;
(function (BackgroundRepeat) {
BackgroundRepeat[BackgroundRepeat["repeat"] = 0] = "repeat";
BackgroundRepeat[BackgroundRepeat["repeat-x"] = 1] = "repeat-x";
BackgroundRepeat[BackgroundRepeat["no-repeat"] = 2] = "no-repeat";
BackgroundRepeat[BackgroundRepeat["repeat-y"] = 3] = "repeat-y";
})(BackgroundRepeat || (exports.BackgroundRepeat = BackgroundRepeat = {}));