@coderline/alphatab 1.8.0-alpha.1643 → 1.8.0-alpha.1645

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.
@@ -3148,6 +3148,7 @@ export declare namespace alphaTex {
3148
3148
  AlphaTexDiagnosticCode,
3149
3149
  AlphaTexDiagnosticsSeverity,
3150
3150
  AlphaTexStaffNoteKind,
3151
+ AlphaTexVoiceMode,
3151
3152
  ArgumentListParseTypesMode,
3152
3153
  IAlphaTexImporter,
3153
3154
  IAlphaTexImporterState
@@ -3665,7 +3666,7 @@ declare class AlphaTexImporter extends ScoreImporter implements IAlphaTexImporte
3665
3666
  private _handleTransposition;
3666
3667
  private _detectTuningForStaff;
3667
3668
  private _barMeta;
3668
- private _newBar;
3669
+ private _getBar;
3669
3670
  startNewStaff(): Staff;
3670
3671
  applyPercussionStaff(staff: Staff): void;
3671
3672
  startNewTrack(): Track;
@@ -4021,6 +4022,14 @@ declare interface AlphaTexTextNode extends AlphaTexAstNode {
4021
4022
  declare interface AlphaTexTokenNode extends AlphaTexAstNode {
4022
4023
  }
4023
4024
 
4025
+ /**
4026
+ * @public
4027
+ */
4028
+ declare enum AlphaTexVoiceMode {
4029
+ StaffWise = 0,
4030
+ BarWise = 1
4031
+ }
4032
+
4024
4033
  /**
4025
4034
  * Defines how the arguments of the meta data tag is parsed.
4026
4035
  * @public
@@ -8884,6 +8893,7 @@ declare interface IAlphaTexImporter {
8884
8893
  declare interface IAlphaTexImporterState {
8885
8894
  score: Score;
8886
8895
  accidentalMode: AlphaTexAccidentalMode;
8896
+ voiceMode: AlphaTexVoiceMode;
8887
8897
  currentDynamics: DynamicValue;
8888
8898
  currentTupletNumerator: number;
8889
8899
  currentTupletDenominator: number;