(staveCount: number)
| 147 | public style?: TrackStyle; |
| 148 | |
| 149 | public ensureStaveCount(staveCount: number): void { |
| 150 | while (this.staves.length < staveCount) { |
| 151 | this.addStaff(new Staff()); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | public addStaff(staff: Staff): void { |
| 156 | staff.index = this.staves.length; |
no test coverage detected