(staff: Staff)
| 153 | } |
| 154 | |
| 155 | public addStaff(staff: Staff): void { |
| 156 | staff.index = this.staves.length; |
| 157 | staff.track = this; |
| 158 | this.staves.push(staff); |
| 159 | } |
| 160 | |
| 161 | public finish(settings: Settings, sharedDataBag: Map<string, unknown> | null = null): void { |
| 162 | if (!this.shortName) { |