@redhare/lowcode-types
Version:
Types for Ali lowCode engine
18 lines (17 loc) • 669 B
JavaScript
exports.__esModule = true;
exports.IPublicEnumDragObjectType = exports.DragObjectType = void 0;
// eslint-disable-next-line no-shadow
var IPublicEnumDragObjectType = exports.IPublicEnumDragObjectType = /*#__PURE__*/function (IPublicEnumDragObjectType) {
IPublicEnumDragObjectType["Node"] = "node";
IPublicEnumDragObjectType["NodeData"] = "nodedata";
return IPublicEnumDragObjectType;
}({});
/**
* @deprecated use IPublicEnumDragObjectType instead
*/
var DragObjectType = exports.DragObjectType = /*#__PURE__*/function (DragObjectType) {
DragObjectType["Node"] = "node";
DragObjectType["NodeData"] = "nodedata";
return DragObjectType;
}({});
;