GraphicalLyricEntry.d.ts 678 B

123456789101112131415
  1. import { LyricsEntry } from "../VoiceData/Lyrics/LyricsEntry";
  2. import { GraphicalLyricWord } from "./GraphicalLyricWord";
  3. import { GraphicalLabel } from "./GraphicalLabel";
  4. import { GraphicalStaffEntry } from "./GraphicalStaffEntry";
  5. export declare class GraphicalLyricEntry {
  6. private lyricsEntry;
  7. private graphicalLyricWord;
  8. private graphicalLabel;
  9. private graphicalStaffEntry;
  10. constructor(lyricsEntry: LyricsEntry, graphicalStaffEntry: GraphicalStaffEntry, lyricsHeight: number, staffHeight: number);
  11. GetLyricsEntry: LyricsEntry;
  12. ParentLyricWord: GraphicalLyricWord;
  13. GraphicalLabel: GraphicalLabel;
  14. StaffEntryParent: GraphicalStaffEntry;
  15. }