orpheus-osmd
Version:
An open source JavaScript engine for displaying MusicXML based on VexFlow.
17 lines (16 loc) • 499 B
TypeScript
import { Tie } from "../VoiceData/Tie";
import { GraphicalNote } from "./GraphicalNote";
/**
* The graphical counterpart of a [[Tie]].
*/
export declare class GraphicalTie {
private tie;
private startNote;
private endNote;
constructor(tie: Tie, start?: GraphicalNote, end?: GraphicalNote);
get GetTie(): Tie;
get StartNote(): GraphicalNote;
set StartNote(value: GraphicalNote);
get EndNote(): GraphicalNote;
set EndNote(value: GraphicalNote);
}