UNPKG

orpheus-osmd

Version:

An open source JavaScript engine for displaying MusicXML based on VexFlow.

19 lines (18 loc) 551 B
import { Voice } from "./Voice"; import { Instrument } from "../Instrument"; export declare class Staff { constructor(parentInstrument: Instrument, instrumentStaffId: number); idInMusicSheet: number; audible: boolean; following: boolean; private parentInstrument; private voices; private volume; private id; get ParentInstrument(): Instrument; set ParentInstrument(value: Instrument); get Voices(): Voice[]; get Id(): number; get Volume(): number; set Volume(value: number); }