opensheetmusicdisplay
Version:
An open source JavaScript engine for displaying MusicXML based on VexFlow.
22 lines (21 loc) • 611 B
TypeScript
import { Tie } from "../VoiceData/Tie";
import { GraphicalNote } from "./GraphicalNote";
import Vex from "vexflow";
import VF = Vex.Flow;
/**
* The graphical counterpart of a [[Tie]].
*/
export declare class GraphicalTie {
private tie;
private startNote;
private endNote;
vfTie: VF.StaveTie;
constructor(tie: Tie, start?: GraphicalNote, end?: GraphicalNote);
get SVGElement(): HTMLElement;
get GetTie(): Tie;
get StartNote(): GraphicalNote;
get Tie(): Tie;
set StartNote(value: GraphicalNote);
get EndNote(): GraphicalNote;
set EndNote(value: GraphicalNote);
}