opensheetmusicdisplay
Version:
An open source JavaScript engine for displaying MusicXML based on VexFlow.
9 lines (8 loc) • 373 B
TypeScript
import { GraphicalStaffEntry } from "./GraphicalStaffEntry";
import { GraphicalObject } from "./GraphicalObject";
export declare abstract class AbstractGraphicalInstruction extends GraphicalObject {
protected parent: GraphicalStaffEntry;
constructor(parent: GraphicalStaffEntry);
get Parent(): GraphicalStaffEntry;
set Parent(value: GraphicalStaffEntry);
}