# Measure

小节类型。

# 属性

名称 类型 默认值 说明
dynamics Dynamics - 力度标记
id string - 小节ID
isLast boolean false 是否最后一节
metronome Metronome - 节拍
notes Note[] [] 音符
number string - 小节序号
staffs Clef[] - 谱号
time Time - 时间
timeSignature TimeSignature - 拍号

# 示例

{
  "id": "M_1",
  "isLast": false,
  "metronome": {
    "beatUnit": 4,
    "bpm": 60
  },
  "notes": [],
  "number": "1",
  "staffs": ["G", "F"],
  "time": {
    "duration": 500,
    "end": 500,
    "start": 0
  },
  "timeSignature": {
    "beats": 4,
    "beatType": 4
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
更新时间: 2025/3/7 14:17:04