12345678910 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SRelationState = void 0;
- var SRelationState;
- (function (SRelationState) {
- SRelationState[SRelationState["Normal"] = 0] = "Normal";
- SRelationState[SRelationState["Animation"] = 1] = "Animation";
- SRelationState[SRelationState["Edit"] = 2] = "Edit";
- SRelationState[SRelationState["Create"] = 3] = "Create";
- })(SRelationState = exports.SRelationState || (exports.SRelationState = {}));
|