{
  "title": "rich-text",
  "type": "object",
  "properties": {
    "nodes": {
      "type": [
        "any[]",
        "string"
      ],
      "description": "节点列表。基础库 2.8.5 开始支持 HTML String，2.8.5 以下版本可使用 mini-html-parser2 将 HTML String 转化为 nodes 数组。"
    },
    "space": {
      "type": "string",
      "description": "显示连续空格。\n有效值：\nnbsp：根据字体设置的空格大小。\nemsp：中文字符空格大小。\nensp：中文字符空格一半大小。"
    },
    "onTap": {
      "tsType": "() => void",
      "description": "触摸。"
    },
    "onTouchstart": {
      "tsType": "() => void",
      "description": "触摸动作开始。"
    },
    "onTouchmove": {
      "tsType": "() => void",
      "description": "触摸移动事件。"
    },
    "onTouchcancel": {
      "tsType": "() => void",
      "description": "触摸动作被打断。"
    },
    "onTouchend": {
      "tsType": "() => void",
      "description": "触摸动作结束。"
    },
    "onLongtap": {
      "tsType": "() => void",
      "description": "触摸后，超过 500ms 再离开。"
    }
  },
  "additionalProperties": false
}