@coderline/alphatab 1.8.0-alpha.1667 → 1.8.0-alpha.1669
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 +7003 -6848
- package/dist/alphaTab.d.ts +13 -2
- package/dist/alphaTab.js +7008 -6853
- 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 +1 -1
package/dist/alphaTab.d.ts
CHANGED
|
@@ -8987,7 +8987,7 @@ declare interface IAlphaTexImporterState {
|
|
|
8987
8987
|
currentTupletDenominator: number;
|
|
8988
8988
|
readonly syncPoints: FlatSyncPoint[];
|
|
8989
8989
|
readonly slurs: Map<string, Note>;
|
|
8990
|
-
readonly percussionArticulationNames: Map<string,
|
|
8990
|
+
readonly percussionArticulationNames: Map<string, string>;
|
|
8991
8991
|
readonly lyrics: Map<number, Lyrics[]>;
|
|
8992
8992
|
readonly staffHasExplicitDisplayTransposition: Set<Staff>;
|
|
8993
8993
|
readonly staffHasExplicitTuning: Set<Staff>;
|
|
@@ -9569,6 +9569,16 @@ declare interface ImporterSettingsJson {
|
|
|
9569
9569
|
* @public
|
|
9570
9570
|
*/
|
|
9571
9571
|
declare class InstrumentArticulation {
|
|
9572
|
+
/**
|
|
9573
|
+
* An internal ID to identify this articulation for purposes like
|
|
9574
|
+
* mapping during exports.The exact meaning of the ID is not defined and dependes on the
|
|
9575
|
+
* importer source.
|
|
9576
|
+
*/
|
|
9577
|
+
id: number;
|
|
9578
|
+
/**
|
|
9579
|
+
* A unique id for this articulation.
|
|
9580
|
+
*/
|
|
9581
|
+
get uniqueId(): string;
|
|
9572
9582
|
/**
|
|
9573
9583
|
* Gets or sets the type of the element for which this articulation is for.
|
|
9574
9584
|
*/
|
|
@@ -9606,7 +9616,8 @@ declare class InstrumentArticulation {
|
|
|
9606
9616
|
* Gets or sets which midi key to use when playing the note.
|
|
9607
9617
|
*/
|
|
9608
9618
|
outputMidiNumber: number;
|
|
9609
|
-
constructor(elementType?: string, staffLine?: number, outputMidiNumber?: number, noteHeadDefault?: MusicFontSymbol, noteHeadHalf?: MusicFontSymbol, noteHeadWhole?: MusicFontSymbol, techniqueSymbol?: MusicFontSymbol, techniqueSymbolPlacement?: TechniqueSymbolPlacement);
|
|
9619
|
+
constructor(elementType?: string, staffLine?: number, outputMidiNumber?: number, noteHeadDefault?: MusicFontSymbol, noteHeadHalf?: MusicFontSymbol, noteHeadWhole?: MusicFontSymbol, techniqueSymbol?: MusicFontSymbol, techniqueSymbolPlacement?: TechniqueSymbolPlacement, id?: number);
|
|
9620
|
+
|
|
9610
9621
|
getSymbol(duration: Duration): MusicFontSymbol;
|
|
9611
9622
|
}
|
|
9612
9623
|
|