@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.
- package/dist/alphaTab.core.min.mjs +2 -2
- package/dist/alphaTab.core.mjs +464 -102
- package/dist/alphaTab.d.ts +6 -0
- package/dist/alphaTab.js +464 -102
- package/dist/alphaTab.min.js +2 -2
- package/dist/alphaTab.min.mjs +1 -1
- package/dist/alphaTab.mjs +1 -1
- package/dist/alphaTab.worker.min.mjs +1 -1
- package/dist/alphaTab.worker.mjs +1 -1
- package/dist/alphaTab.worklet.min.mjs +1 -1
- package/dist/alphaTab.worklet.mjs +1 -1
- package/package.json +2 -2
package/dist/alphaTab.d.ts
CHANGED
|
@@ -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
|
}
|