sy-bind
Version:
A lightweight binding framework for Cocos Creator
42 lines • 1.7 kB
JavaScript
export var BindType;
(function (BindType) {
BindType[BindType["level0"] = 1] = "level0";
BindType[BindType["Level1"] = 2] = "Level1";
BindType[BindType["Level2"] = 4] = "Level2";
BindType[BindType["Level3"] = 8] = "Level3";
BindType[BindType["Level4"] = 16] = "Level4";
BindType[BindType["Level5"] = 32] = "Level5";
BindType[BindType["Level6"] = 64] = "Level6";
BindType[BindType["Level7"] = 128] = "Level7";
BindType[BindType["Level8"] = 256] = "Level8";
BindType[BindType["Level9"] = 512] = "Level9";
BindType[BindType["Level10"] = 1024] = "Level10";
BindType[BindType["Level11"] = 2048] = "Level11";
})(BindType || (BindType = {}));
export var Code;
(function (Code) {
})(Code || (Code = {}));
export var StrategiesType;
(function (StrategiesType) {
StrategiesType[StrategiesType["normal"] = 101] = "normal";
StrategiesType[StrategiesType["customer"] = 202] = "customer";
StrategiesType[StrategiesType["special"] = 303] = "special";
})(StrategiesType || (StrategiesType = {}));
export var ListMethodType;
(function (ListMethodType) {
ListMethodType["push"] = "push";
ListMethodType["pop"] = "pop";
ListMethodType["change"] = "indexchange";
})(ListMethodType || (ListMethodType = {}));
export var ListType;
(function (ListType) {
ListType["primitive"] = "primitive";
ListType["class"] = "class";
})(ListType || (ListType = {}));
export var CompileStatus;
(function (CompileStatus) {
CompileStatus["compiled"] = "done";
CompileStatus["uncompiled"] = "not";
CompileStatus["new"] = "new";
})(CompileStatus || (CompileStatus = {}));
//# sourceMappingURL=SyEnums.js.map