@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.
- package/dist/alphaTab.core.min.mjs +2 -2
- package/dist/alphaTab.core.mjs +357 -299
- package/dist/alphaTab.d.ts +26 -19
- package/dist/alphaTab.js +357 -299
- 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
|
@@ -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
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
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
|
-
|
|
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
|
|
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.
|
|
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.
|