opensheetmusicdisplay
Version:
An open source JavaScript engine for displaying MusicXML based on VexFlow.
12 lines (11 loc) • 487 B
TypeScript
import { SourceStaffEntry } from "../SourceStaffEntry";
export declare abstract class AbstractNotationInstruction {
constructor(parent: SourceStaffEntry);
protected parent: SourceStaffEntry;
/** States whether the object should be displayed. False if xmlNode.attribute("print-object").value = "no". */
private printObject;
get Parent(): SourceStaffEntry;
set Parent(value: SourceStaffEntry);
get PrintObject(): boolean;
set PrintObject(value: boolean);
}