@coderline/alphatab 1.9.0-alpha.1852 → 1.9.0-alpha.1855

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.
@@ -3664,7 +3664,7 @@ declare enum AlphaTexDiagnosticsSeverity {
3664
3664
  * @record
3665
3665
  * @public
3666
3666
  */
3667
- declare interface AlphaTexDotTokenNode extends AlphaTexTokenNode {
3667
+ declare interface AlphaTexDotTokenNode extends AlphaTexTokenNode, IAlphaTexStringSeparatorNode {
3668
3668
  nodeType: AlphaTexNodeType.Dot;
3669
3669
  }
3670
3670
 
@@ -3862,20 +3862,21 @@ declare enum AlphaTexNodeType {
3862
3862
  RParen = 7,
3863
3863
  Colon = 8,
3864
3864
  Asterisk = 9,
3865
- Ident = 10,
3866
- Tag = 11,
3867
- Meta = 12,
3868
- Arguments = 13,
3869
- Props = 14,
3870
- Prop = 15,
3871
- Number = 16,
3872
- String = 17,
3873
- Score = 18,
3874
- Bar = 19,
3875
- Beat = 20,
3876
- Duration = 21,
3877
- NoteList = 22,
3878
- Note = 23
3865
+ At = 10,
3866
+ Ident = 100,
3867
+ Tag = 101,
3868
+ Meta = 102,
3869
+ Arguments = 103,
3870
+ Props = 104,
3871
+ Prop = 105,
3872
+ Number = 106,
3873
+ String = 107,
3874
+ Score = 200,
3875
+ Bar = 201,
3876
+ Beat = 202,
3877
+ Duration = 203,
3878
+ NoteList = 204,
3879
+ Note = 205
3879
3880
  }
3880
3881
 
3881
3882
  /**
@@ -3912,9 +3913,9 @@ declare interface AlphaTexNoteNode extends AlphaTexAstNode {
3912
3913
  */
3913
3914
  noteValue: IAlphaTexNoteValueNode;
3914
3915
  /**
3915
- * The dot separating the note value and the string for fretted/stringed instruments like guitars.
3916
+ * The dot or @ separating the note value and the string for fretted/stringed instruments like guitars.
3916
3917
  */
3917
- noteStringDot?: AlphaTexDotTokenNode;
3918
+ noteStringSeparator?: IAlphaTexStringSeparatorNode;
3918
3919
  /**
3919
3920
  * The string value for fretted/stringed notes like guitars.
3920
3921
  */
@@ -4976,12 +4977,12 @@ declare class Beat {
4976
4977
  deadSlapped: boolean;
4977
4978
  /**
4978
4979
  * Gets or sets the chromatic tone value (0–11) of the pitch at which this rest should be displayed.
4979
- * A value of -1 means use the default position formula.
4980
+ * A value of NaN means use the default position formula.
4980
4981
  */
4981
4982
  restDisplayTone: number;
4982
4983
  /**
4983
4984
  * Gets or sets the octave at which this rest should be displayed.
4984
- * Only relevant when {@link restDisplayTone} is set. -1 means use the default position formula.
4985
+ * Only relevant when {@link restDisplayTone} is set. NaN means use the default position formula.
4985
4986
  */
4986
4987
  restDisplayOctave: number;
4987
4988
  /**
@@ -9328,6 +9329,12 @@ declare interface IAlphaTexMetaDataTagPrefixNode extends IAlphaTexAstNode {
9328
9329
  declare interface IAlphaTexNoteValueNode extends IAlphaTexAstNode {
9329
9330
  }
9330
9331
 
9332
+ /**
9333
+ * @public
9334
+ */
9335
+ declare interface IAlphaTexStringSeparatorNode extends IAlphaTexAstNode {
9336
+ }
9337
+
9331
9338
  /**
9332
9339
  * A {@link IBackingTrackSynthOutput} which uses a HTMLAudioElement as playback mechanism.
9333
9340
  * Allows the access to the element for further custom usage.