@coderline/alphatab 1.9.0-alpha.1883 → 1.9.0-alpha.1891

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16629,6 +16629,12 @@ declare class Track {
16629
16629
  style?: TrackStyle;
16630
16630
  ensureStaveCount(staveCount: number): void;
16631
16631
  addStaff(staff: Staff): void;
16632
+ /**
16633
+ * Returns the index of {@link articulation} in {@link percussionArticulations},
16634
+ * appending it (deduplicated by `uniqueId`) when not yet present. Callers store the
16635
+ * returned index in {@link Note.percussionArticulation}.
16636
+ */
16637
+ getOrRegisterPercussionArticulation(articulation: InstrumentArticulation): number;
16632
16638
  finish(settings: Settings, sharedDataBag?: Map<string, unknown> | null): void;
16633
16639
  applyLyrics(lyrics: Lyrics[]): void;
16634
16640
  }