/** * 节点类型 * @author wangjiegj */ /** * 节点类型 */ declare enum GSPCommonObjectType { /** * 主节点 */ MainObject = 0, /** * 非主节点 */ ChildObject = 1 } export { GSPCommonObjectType };