VexFlowStaffLine.ts 295 B

123456789
  1. import {StaffLine} from "../StaffLine";
  2. import {MusicSystem} from "../MusicSystem";
  3. import {Staff} from "../../VoiceData/Staff";
  4. export class VexFlowStaffLine extends StaffLine {
  5. constructor(parentSystem: MusicSystem, parentStaff: Staff) {
  6. super(parentSystem, parentStaff);
  7. }
  8. }