# 分割线

用于在多个模块之间做分割

![image.png](https://api.apifox.com/api/v1/projects/5440720/resources/476527/image-preview)

## 数据结构

```typescript
interface MdDivider {
  type: 'divider';
  text?: string
}
```

```js
{
  "type": "divider",
  "text": "这是一条分割线"
}
```
