@coderline/alphatab-language-server 1.7.0-alpha.1626
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/LICENSE +378 -0
- package/LICENSE.header +10 -0
- package/README.md +16 -0
- package/biome.jsonc +31 -0
- package/dist/server.d.ts +208 -0
- package/dist/server.min.mjs +13 -0
- package/dist/server.mjs +6142 -0
- package/dist/server.mjs.map +1 -0
- package/dist/types/alphatab/src/AlphaTabApiBase.d.ts +2550 -0
- package/dist/types/alphatab/src/AlphaTabError.d.ts +15 -0
- package/dist/types/alphatab/src/CoreSettings.d.ts +212 -0
- package/dist/types/alphatab/src/DisplaySettings.d.ts +340 -0
- package/dist/types/alphatab/src/EngravingSettings.d.ts +430 -0
- package/dist/types/alphatab/src/Environment.d.ts +230 -0
- package/dist/types/alphatab/src/EventEmitter.d.ts +62 -0
- package/dist/types/alphatab/src/ExporterSettings.d.ts +23 -0
- package/dist/types/alphatab/src/FileLoadError.d.ts +9 -0
- package/dist/types/alphatab/src/FormatError.d.ts +8 -0
- package/dist/types/alphatab/src/ImporterSettings.d.ts +64 -0
- package/dist/types/alphatab/src/LayoutMode.d.ts +14 -0
- package/dist/types/alphatab/src/LogLevel.d.ts +27 -0
- package/dist/types/alphatab/src/Logger.d.ts +33 -0
- package/dist/types/alphatab/src/NotationSettings.d.ts +509 -0
- package/dist/types/alphatab/src/PlayerSettings.d.ts +411 -0
- package/dist/types/alphatab/src/ProgressEventArgs.d.ts +20 -0
- package/dist/types/alphatab/src/RenderingResources.d.ts +175 -0
- package/dist/types/alphatab/src/ResizeEventArgs.d.ts +19 -0
- package/dist/types/alphatab/src/Settings.d.ts +59 -0
- package/dist/types/alphatab/src/SmuflMetadata.d.ts +84 -0
- package/dist/types/alphatab/src/StaveProfile.d.ts +27 -0
- package/dist/types/alphatab/src/alphaTab.core.d.ts +36 -0
- package/dist/types/alphatab/src/alphaTab.main.d.ts +1 -0
- package/dist/types/alphatab/src/alphaTab.polyfills.d.ts +1 -0
- package/dist/types/alphatab/src/exporter/AlphaTexExporter.d.ts +24 -0
- package/dist/types/alphatab/src/exporter/Gp7Exporter.d.ts +10 -0
- package/dist/types/alphatab/src/exporter/GpifWriter.d.ts +61 -0
- package/dist/types/alphatab/src/exporter/ScoreExporter.d.ts +29 -0
- package/dist/types/alphatab/src/exporter/_barrel.d.ts +3 -0
- package/dist/types/alphatab/src/generated/CoreSettingsJson.d.ts +172 -0
- package/dist/types/alphatab/src/generated/CoreSettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/DisplaySettingsJson.d.ts +328 -0
- package/dist/types/alphatab/src/generated/DisplaySettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/EngravingSettingsCloner.d.ts +7 -0
- package/dist/types/alphatab/src/generated/EngravingSettingsJson.d.ts +388 -0
- package/dist/types/alphatab/src/generated/EngravingSettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/EngravingStemInfoJson.d.ts +20 -0
- package/dist/types/alphatab/src/generated/EngravingStemInfoSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/ExporterSettingsJson.d.ts +24 -0
- package/dist/types/alphatab/src/generated/ExporterSettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/ImporterSettingsJson.d.ts +65 -0
- package/dist/types/alphatab/src/generated/ImporterSettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/NotationSettingsJson.d.ts +210 -0
- package/dist/types/alphatab/src/generated/NotationSettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/PlayerSettingsJson.d.ts +276 -0
- package/dist/types/alphatab/src/generated/PlayerSettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/RenderingResourcesJson.d.ts +168 -0
- package/dist/types/alphatab/src/generated/RenderingResourcesSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/SettingsJson.d.ts +48 -0
- package/dist/types/alphatab/src/generated/SettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/SlidePlaybackSettingsJson.d.ts +31 -0
- package/dist/types/alphatab/src/generated/SlidePlaybackSettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/VersionInfo.d.ts +9 -0
- package/dist/types/alphatab/src/generated/VibratoPlaybackSettingsJson.d.ts +49 -0
- package/dist/types/alphatab/src/generated/VibratoPlaybackSettingsSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/_jsonbarrel.d.ts +14 -0
- package/dist/types/alphatab/src/generated/model/AutomationCloner.d.ts +7 -0
- package/dist/types/alphatab/src/generated/model/AutomationSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/BackingTrackSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/BarSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/BarStyleSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/BeatCloner.d.ts +7 -0
- package/dist/types/alphatab/src/generated/model/BeatSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/BeatStyleSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/BendPointCloner.d.ts +7 -0
- package/dist/types/alphatab/src/generated/model/BendPointSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/ChordSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/FermataSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/HeaderFooterStyleSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/InstrumentArticulationSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/MasterBarSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/NoteCloner.d.ts +7 -0
- package/dist/types/alphatab/src/generated/model/NoteSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/NoteStyleSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/PlaybackInformationSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/RenderStylesheetSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/ScoreSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/ScoreStyleSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/SectionSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/StaffSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/SustainPedalMarkerSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/SyncPointDataCloner.d.ts +7 -0
- package/dist/types/alphatab/src/generated/model/SyncPointDataSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/TrackSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/TrackStyleSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/TuningSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/VoiceSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/generated/model/VoiceStyleSerializer.d.ts +9 -0
- package/dist/types/alphatab/src/importer/AlphaTexImporter.d.ts +69 -0
- package/dist/types/alphatab/src/importer/BinaryStylesheet.d.ts +70 -0
- package/dist/types/alphatab/src/importer/CapellaImporter.d.ts +10 -0
- package/dist/types/alphatab/src/importer/CapellaParser.d.ts +75 -0
- package/dist/types/alphatab/src/importer/Gp3To5Importer.d.ts +95 -0
- package/dist/types/alphatab/src/importer/Gp7To8Importer.d.ts +10 -0
- package/dist/types/alphatab/src/importer/GpifParser.d.ts +131 -0
- package/dist/types/alphatab/src/importer/GpxFileSystem.d.ts +82 -0
- package/dist/types/alphatab/src/importer/GpxImporter.d.ts +10 -0
- package/dist/types/alphatab/src/importer/LayoutConfiguration.d.ts +38 -0
- package/dist/types/alphatab/src/importer/MusicXmlImporter.d.ts +128 -0
- package/dist/types/alphatab/src/importer/PartConfiguration.d.ts +27 -0
- package/dist/types/alphatab/src/importer/ScoreImporter.d.ts +22 -0
- package/dist/types/alphatab/src/importer/ScoreLoader.d.ts +32 -0
- package/dist/types/alphatab/src/importer/UnsupportedFormatError.d.ts +9 -0
- package/dist/types/alphatab/src/importer/_barrel.d.ts +5 -0
- package/dist/types/alphatab/src/importer/alphaTex/ATNF.d.ts +19 -0
- package/dist/types/alphatab/src/importer/alphaTex/AlphaTex1EnumMappings.d.ts +75 -0
- package/dist/types/alphatab/src/importer/alphaTex/AlphaTex1LanguageDefinitions.d.ts +39 -0
- package/dist/types/alphatab/src/importer/alphaTex/AlphaTex1LanguageHandler.d.ts +72 -0
- package/dist/types/alphatab/src/importer/alphaTex/AlphaTex1MetaDataReader.d.ts +42 -0
- package/dist/types/alphatab/src/importer/alphaTex/AlphaTexAst.d.ts +504 -0
- package/dist/types/alphatab/src/importer/alphaTex/AlphaTexLexer.d.ts +43 -0
- package/dist/types/alphatab/src/importer/alphaTex/AlphaTexParser.d.ts +60 -0
- package/dist/types/alphatab/src/importer/alphaTex/AlphaTexShared.d.ts +290 -0
- package/dist/types/alphatab/src/importer/alphaTex/IAlphaTexLanguageImportHandler.d.ts +50 -0
- package/dist/types/alphatab/src/importer/alphaTex/IAlphaTexMetaDataReader.d.ts +12 -0
- package/dist/types/alphatab/src/importer/alphaTex/_barrel.d.ts +4 -0
- package/dist/types/alphatab/src/io/BitReader.d.ts +18 -0
- package/dist/types/alphatab/src/io/ByteBuffer.d.ts +26 -0
- package/dist/types/alphatab/src/io/IOHelper.d.ts +38 -0
- package/dist/types/alphatab/src/io/IReadable.d.ts +48 -0
- package/dist/types/alphatab/src/io/IWriteable.d.ts +22 -0
- package/dist/types/alphatab/src/io/JsonHelper.d.ts +26 -0
- package/dist/types/alphatab/src/io/TypeConversions.d.ts +20 -0
- package/dist/types/alphatab/src/io/_barrel.d.ts +4 -0
- package/dist/types/alphatab/src/midi/AlphaSynthMidiFileHandler.d.ts +28 -0
- package/dist/types/alphatab/src/midi/BeatTickLookup.d.ts +63 -0
- package/dist/types/alphatab/src/midi/ControllerType.d.ts +84 -0
- package/dist/types/alphatab/src/midi/DeprecatedEvents.d.ts +103 -0
- package/dist/types/alphatab/src/midi/GeneralMidi.d.ts +13 -0
- package/dist/types/alphatab/src/midi/IMidiFileHandler.d.ts +79 -0
- package/dist/types/alphatab/src/midi/MasterBarTickLookup.d.ts +85 -0
- package/dist/types/alphatab/src/midi/MidiEvent.d.ts +292 -0
- package/dist/types/alphatab/src/midi/MidiFile.d.ts +72 -0
- package/dist/types/alphatab/src/midi/MidiFileGenerator.d.ts +150 -0
- package/dist/types/alphatab/src/midi/MidiPlaybackController.d.ts +36 -0
- package/dist/types/alphatab/src/midi/MidiTickLookup.d.ts +167 -0
- package/dist/types/alphatab/src/midi/MidiUtils.d.ts +37 -0
- package/dist/types/alphatab/src/midi/_barrel.d.ts +10 -0
- package/dist/types/alphatab/src/model/AccentuationType.d.ts +22 -0
- package/dist/types/alphatab/src/model/AccidentalType.d.ts +42 -0
- package/dist/types/alphatab/src/model/Automation.d.ts +113 -0
- package/dist/types/alphatab/src/model/BackingTrack.d.ts +13 -0
- package/dist/types/alphatab/src/model/Bar.d.ts +329 -0
- package/dist/types/alphatab/src/model/BarreShape.d.ts +18 -0
- package/dist/types/alphatab/src/model/Beat.d.ts +559 -0
- package/dist/types/alphatab/src/model/BendPoint.d.ts +26 -0
- package/dist/types/alphatab/src/model/BendStyle.d.ts +18 -0
- package/dist/types/alphatab/src/model/BendType.d.ts +46 -0
- package/dist/types/alphatab/src/model/BrushType.d.ts +26 -0
- package/dist/types/alphatab/src/model/Chord.d.ts +48 -0
- package/dist/types/alphatab/src/model/Clef.d.ts +26 -0
- package/dist/types/alphatab/src/model/Color.d.ts +40 -0
- package/dist/types/alphatab/src/model/CrescendoType.d.ts +18 -0
- package/dist/types/alphatab/src/model/Direction.d.ts +25 -0
- package/dist/types/alphatab/src/model/Duration.d.ts +50 -0
- package/dist/types/alphatab/src/model/DynamicValue.d.ts +92 -0
- package/dist/types/alphatab/src/model/ElementStyle.d.ts +13 -0
- package/dist/types/alphatab/src/model/FadeType.d.ts +22 -0
- package/dist/types/alphatab/src/model/Fermata.d.ts +34 -0
- package/dist/types/alphatab/src/model/Fingers.d.ts +34 -0
- package/dist/types/alphatab/src/model/Font.d.ts +117 -0
- package/dist/types/alphatab/src/model/GolpeType.d.ts +18 -0
- package/dist/types/alphatab/src/model/GraceGroup.d.ts +26 -0
- package/dist/types/alphatab/src/model/GraceType.d.ts +22 -0
- package/dist/types/alphatab/src/model/HarmonicType.d.ts +34 -0
- package/dist/types/alphatab/src/model/InstrumentArticulation.d.ts +71 -0
- package/dist/types/alphatab/src/model/JsonConverter.d.ts +95 -0
- package/dist/types/alphatab/src/model/KeySignature.d.ts +66 -0
- package/dist/types/alphatab/src/model/KeySignatureType.d.ts +14 -0
- package/dist/types/alphatab/src/model/Lyrics.d.ts +30 -0
- package/dist/types/alphatab/src/model/MasterBar.d.ts +182 -0
- package/dist/types/alphatab/src/model/ModelUtils.d.ts +134 -0
- package/dist/types/alphatab/src/model/MusicFontSymbol.d.ts +289 -0
- package/dist/types/alphatab/src/model/Note.d.ts +516 -0
- package/dist/types/alphatab/src/model/NoteAccidentalMode.d.ts +34 -0
- package/dist/types/alphatab/src/model/NoteOrnament.d.ts +11 -0
- package/dist/types/alphatab/src/model/Ottavia.d.ts +26 -0
- package/dist/types/alphatab/src/model/PercussionMapper.d.ts +15 -0
- package/dist/types/alphatab/src/model/PickStroke.d.ts +18 -0
- package/dist/types/alphatab/src/model/PlaybackInformation.d.ts +45 -0
- package/dist/types/alphatab/src/model/Rasgueado.d.ts +25 -0
- package/dist/types/alphatab/src/model/RenderStylesheet.d.ts +135 -0
- package/dist/types/alphatab/src/model/RepeatGroup.d.ts +33 -0
- package/dist/types/alphatab/src/model/Score.d.ts +224 -0
- package/dist/types/alphatab/src/model/Section.d.ts +17 -0
- package/dist/types/alphatab/src/model/SimileMark.d.ts +24 -0
- package/dist/types/alphatab/src/model/SlideInType.d.ts +18 -0
- package/dist/types/alphatab/src/model/SlideOutType.d.ts +34 -0
- package/dist/types/alphatab/src/model/Staff.d.ts +100 -0
- package/dist/types/alphatab/src/model/Track.d.ts +124 -0
- package/dist/types/alphatab/src/model/TripletFeel.d.ts +34 -0
- package/dist/types/alphatab/src/model/Tuning.d.ts +60 -0
- package/dist/types/alphatab/src/model/TupletGroup.d.ts +37 -0
- package/dist/types/alphatab/src/model/VibratoType.d.ts +18 -0
- package/dist/types/alphatab/src/model/Voice.d.ts +81 -0
- package/dist/types/alphatab/src/model/WahPedal.d.ts +9 -0
- package/dist/types/alphatab/src/model/WhammyType.d.ts +36 -0
- package/dist/types/alphatab/src/model/_barrel.d.ts +57 -0
- package/dist/types/alphatab/src/platform/Cursors.d.ts +31 -0
- package/dist/types/alphatab/src/platform/ICanvas.d.ts +102 -0
- package/dist/types/alphatab/src/platform/IContainer.d.ts +71 -0
- package/dist/types/alphatab/src/platform/IMouseEventArgs.d.ts +27 -0
- package/dist/types/alphatab/src/platform/IUiFacade.d.ts +175 -0
- package/dist/types/alphatab/src/platform/_barrel.d.ts +8 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaSynthAudioExporterWorkerApi.d.ts +21 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaSynthAudioWorkletOutput.d.ts +30 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaSynthScriptProcessorOutput.d.ts +21 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaSynthWebAudioOutputBase.d.ts +57 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaSynthWebWorker.d.ts +31 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaSynthWebWorkerApi.d.ts +98 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaSynthWorkerSynthOutput.d.ts +33 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaTabApi.d.ts +111 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaTabWebWorker.d.ts +16 -0
- package/dist/types/alphatab/src/platform/javascript/AlphaTabWorkerScoreRenderer.d.ts +34 -0
- package/dist/types/alphatab/src/platform/javascript/AudioElementBackingTrackSynthOutput.d.ts +49 -0
- package/dist/types/alphatab/src/platform/javascript/BrowserMouseEventArgs.d.ts +14 -0
- package/dist/types/alphatab/src/platform/javascript/BrowserUiFacade.d.ts +96 -0
- package/dist/types/alphatab/src/platform/javascript/Html5Canvas.d.ts +57 -0
- package/dist/types/alphatab/src/platform/javascript/HtmlElementContainer.d.ts +45 -0
- package/dist/types/alphatab/src/platform/javascript/IWorkerScope.d.ts +8 -0
- package/dist/types/alphatab/src/platform/javascript/IntersectionObserverPolyfill.d.ts +15 -0
- package/dist/types/alphatab/src/platform/javascript/JQueryAlphaTab.d.ts +68 -0
- package/dist/types/alphatab/src/platform/javascript/ResizeObserverPolyfill.d.ts +15 -0
- package/dist/types/alphatab/src/platform/javascript/ScalableHtmlElementContainer.d.ts +26 -0
- package/dist/types/alphatab/src/platform/javascript/WebPlatform.d.ts +10 -0
- package/dist/types/alphatab/src/platform/skia/SkiaCanvas.d.ts +86 -0
- package/dist/types/alphatab/src/platform/svg/CssFontSvgCanvas.d.ts +11 -0
- package/dist/types/alphatab/src/platform/svg/FontSizes.d.ts +32 -0
- package/dist/types/alphatab/src/platform/svg/SvgCanvas.d.ts +48 -0
- package/dist/types/alphatab/src/rendering/BarRendererBase.d.ts +177 -0
- package/dist/types/alphatab/src/rendering/BarRendererFactory.d.ts +21 -0
- package/dist/types/alphatab/src/rendering/BeatXPosition.d.ts +31 -0
- package/dist/types/alphatab/src/rendering/EffectBand.d.ts +31 -0
- package/dist/types/alphatab/src/rendering/EffectBandSizingInfo.d.ts +12 -0
- package/dist/types/alphatab/src/rendering/EffectBandSlot.d.ts +22 -0
- package/dist/types/alphatab/src/rendering/EffectBarGlyphSizing.d.ts +37 -0
- package/dist/types/alphatab/src/rendering/EffectBarRenderer.d.ts +29 -0
- package/dist/types/alphatab/src/rendering/EffectBarRendererFactory.d.ts +22 -0
- package/dist/types/alphatab/src/rendering/EffectBarRendererInfo.d.ts +62 -0
- package/dist/types/alphatab/src/rendering/IScoreRenderer.d.ts +151 -0
- package/dist/types/alphatab/src/rendering/LineBarRenderer.d.ts +64 -0
- package/dist/types/alphatab/src/rendering/MultiBarRestBeatContainerGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/NumberedBarRenderer.d.ts +54 -0
- package/dist/types/alphatab/src/rendering/NumberedBarRendererFactory.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/NumberedBeatContainerGlyph.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/RenderFinishedEventArgs.d.ts +47 -0
- package/dist/types/alphatab/src/rendering/ScoreBarRenderer.d.ts +68 -0
- package/dist/types/alphatab/src/rendering/ScoreBarRendererFactory.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/ScoreBeatContainerGlyph.d.ts +12 -0
- package/dist/types/alphatab/src/rendering/ScoreRenderer.d.ts +55 -0
- package/dist/types/alphatab/src/rendering/ScoreRendererWrapper.d.ts +37 -0
- package/dist/types/alphatab/src/rendering/SlashBarRenderer.d.ts +41 -0
- package/dist/types/alphatab/src/rendering/SlashBarRendererFactory.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/SlashBeatContainerGlyph.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/TabBarRenderer.d.ts +57 -0
- package/dist/types/alphatab/src/rendering/TabBarRendererFactory.d.ts +22 -0
- package/dist/types/alphatab/src/rendering/_barrel.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/effects/AlternateEndingsEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/BeatBarreEffectInfo.d.ts +21 -0
- package/dist/types/alphatab/src/rendering/effects/BeatTimerEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/CapoEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/ChordsEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/CrescendoEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/DirectionsEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/DynamicsEffectInfo.d.ts +21 -0
- package/dist/types/alphatab/src/rendering/effects/FadeEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/FermataEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/FingeringEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/FreeTimeEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/GolpeEffectInfo.d.ts +23 -0
- package/dist/types/alphatab/src/rendering/effects/HarmonicsEffectInfo.d.ts +23 -0
- package/dist/types/alphatab/src/rendering/effects/LeftHandTapEffectInfo.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/effects/LetRingEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/LyricsEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/MarkerEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/NoteEffectInfoBase.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/effects/NoteOrnamentEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/OttaviaEffectInfo.d.ts +22 -0
- package/dist/types/alphatab/src/rendering/effects/PalmMuteEffectInfo.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/effects/PickSlideEffectInfo.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/effects/PickStrokeEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/RasgueadoEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/SlightBeatVibratoEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/SlightNoteVibratoEffectInfo.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/effects/SustainPedalEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/TapEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/TempoEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/TextEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/TrillEffectInfo.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/effects/TripletFeelEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/WahPedalEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/WhammyBarEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/WideBeatVibratoEffectInfo.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/effects/WideNoteVibratoEffectInfo.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/glyphs/AccentuationGlyph.d.ts +13 -0
- package/dist/types/alphatab/src/rendering/glyphs/AccidentalGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/glyphs/AccidentalGroupGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/AlternateEndingsGlyph.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/glyphs/ArticStaccatoAboveGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/AugmentationDotGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/BarLineGlyph.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/glyphs/BarNumberGlyph.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/glyphs/BarTempoGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/BeatContainerGlyph.d.ts +34 -0
- package/dist/types/alphatab/src/rendering/glyphs/BeatGlyphBase.d.ts +24 -0
- package/dist/types/alphatab/src/rendering/glyphs/BeatOnNoteGlyphBase.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/glyphs/BeatTimerGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/BeatVibratoGlyph.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/glyphs/BendNoteHeadGroupGlyph.d.ts +26 -0
- package/dist/types/alphatab/src/rendering/glyphs/ChordDiagramContainerGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/glyphs/ChordDiagramGlyph.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/glyphs/ClefGlyph.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/glyphs/CrescendoGlyph.d.ts +12 -0
- package/dist/types/alphatab/src/rendering/glyphs/DeadNoteHeadGlyph.d.ts +7 -0
- package/dist/types/alphatab/src/rendering/glyphs/DeadSlappedBeatGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/glyphs/DiamondNoteHeadGlyph.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/glyphs/DirectionsContainerGlyph.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/glyphs/DynamicsGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/glyphs/EffectGlyph.d.ts +24 -0
- package/dist/types/alphatab/src/rendering/glyphs/FadeGlyph.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/glyphs/FermataGlyph.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/glyphs/FingeringGroupGlyph.d.ts +28 -0
- package/dist/types/alphatab/src/rendering/glyphs/FlagGlyph.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/glyphs/GhostNoteContainerGlyph.d.ts +29 -0
- package/dist/types/alphatab/src/rendering/glyphs/GhostParenthesisGlyph.d.ts +13 -0
- package/dist/types/alphatab/src/rendering/glyphs/Glyph.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/glyphs/GlyphGroup.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/glyphs/GroupedEffectGlyph.d.ts +20 -0
- package/dist/types/alphatab/src/rendering/glyphs/GuitarGolpeGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/KeySignatureGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/LeftHandTapGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/LeftToRightLayoutingGlyphGroup.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/glyphs/LineRangedGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/LyricsGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/MultiBarRestGlyph.d.ts +12 -0
- package/dist/types/alphatab/src/rendering/glyphs/MusicFontGlyph.d.ts +34 -0
- package/dist/types/alphatab/src/rendering/glyphs/NoteHeadGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/NoteNumberGlyph.d.ts +20 -0
- package/dist/types/alphatab/src/rendering/glyphs/NoteOrnamentGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/glyphs/NoteVibratoGlyph.d.ts +26 -0
- package/dist/types/alphatab/src/rendering/glyphs/NumberGlyph.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/glyphs/NumberedBeatGlyph.d.ts +37 -0
- package/dist/types/alphatab/src/rendering/glyphs/NumberedDashGlyph.d.ts +12 -0
- package/dist/types/alphatab/src/rendering/glyphs/NumberedKeySignatureGlyph.d.ts +17 -0
- package/dist/types/alphatab/src/rendering/glyphs/NumberedNoteHeadGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/NumberedSlurGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/NumberedTieGlyph.d.ts +21 -0
- package/dist/types/alphatab/src/rendering/glyphs/OttavaGlyph.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/glyphs/PercussionNoteHeadGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/PickStrokeGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/glyphs/PictEdgeOfCymbalGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/RepeatCountGlyph.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/glyphs/RowContainerGlyph.d.ts +12 -0
- package/dist/types/alphatab/src/rendering/glyphs/RowGlyphContainer.d.ts +13 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreBeatGlyph.d.ts +29 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreBeatPreNotesGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreBendGlyph.d.ts +17 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreBrushGlyph.d.ts +13 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreHelperNotesBaseGlyph.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreLegatoGlyph.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreNoteChordGlyph.d.ts +35 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreNoteChordGlyphBase.d.ts +25 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreNoteGlyphInfo.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreRestGlyph.d.ts +17 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreSlideLineGlyph.d.ts +22 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreSlurGlyph.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreTieGlyph.d.ts +20 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreTimeSignatureGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/ScoreWhammyBarGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/SlashBeatGlyph.d.ts +24 -0
- package/dist/types/alphatab/src/rendering/glyphs/SlashNoteHeadGlyph.d.ts +24 -0
- package/dist/types/alphatab/src/rendering/glyphs/SlashRestGlyph.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/glyphs/SlashTieGlyph.d.ts +21 -0
- package/dist/types/alphatab/src/rendering/glyphs/SpacingGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/StringNumberContainerGlyph.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/glyphs/SustainPedalGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabBeatContainerGlyph.d.ts +13 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabBeatGlyph.d.ts +25 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabBeatPreNotesGlyph.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabBendGlyph.d.ts +24 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabBendRenderPoint.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabBrushGlyph.d.ts +13 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabClefGlyph.d.ts +8 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabNoteChordGlyph.d.ts +33 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabRestGlyph.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabSlideLineGlyph.d.ts +21 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabSlurGlyph.d.ts +14 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabTieGlyph.d.ts +21 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabTimeSignatureGlyph.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/glyphs/TabWhammyBarGlyph.d.ts +19 -0
- package/dist/types/alphatab/src/rendering/glyphs/TextGlyph.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/glyphs/TieGlyph.d.ts +40 -0
- package/dist/types/alphatab/src/rendering/glyphs/TimeSignatureGlyph.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/glyphs/TremoloPickingGlyph.d.ts +9 -0
- package/dist/types/alphatab/src/rendering/glyphs/TrillGlyph.d.ts +10 -0
- package/dist/types/alphatab/src/rendering/glyphs/TripletFeelGlyph.d.ts +15 -0
- package/dist/types/alphatab/src/rendering/glyphs/TuningContainerGlyph.d.ts +7 -0
- package/dist/types/alphatab/src/rendering/glyphs/TuningGlyph.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/glyphs/VoiceContainerGlyph.d.ts +26 -0
- package/dist/types/alphatab/src/rendering/glyphs/WahPedalGlyph.d.ts +11 -0
- package/dist/types/alphatab/src/rendering/layout/HorizontalScreenLayout.d.ts +23 -0
- package/dist/types/alphatab/src/rendering/layout/PageViewLayout.d.ts +28 -0
- package/dist/types/alphatab/src/rendering/layout/ScoreLayout.d.ts +73 -0
- package/dist/types/alphatab/src/rendering/staves/BarLayoutingInfo.d.ts +44 -0
- package/dist/types/alphatab/src/rendering/staves/MasterBarsRenderers.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/staves/RenderStaff.d.ts +72 -0
- package/dist/types/alphatab/src/rendering/staves/Spring.d.ts +16 -0
- package/dist/types/alphatab/src/rendering/staves/StaffSystem.d.ts +75 -0
- package/dist/types/alphatab/src/rendering/staves/StaffTrackGroup.d.ts +20 -0
- package/dist/types/alphatab/src/rendering/utils/AccidentalHelper.d.ts +89 -0
- package/dist/types/alphatab/src/rendering/utils/BarBounds.d.ts +45 -0
- package/dist/types/alphatab/src/rendering/utils/BarCollisionHelper.d.ts +31 -0
- package/dist/types/alphatab/src/rendering/utils/BarHelpers.d.ts +18 -0
- package/dist/types/alphatab/src/rendering/utils/BeamDirection.d.ts +7 -0
- package/dist/types/alphatab/src/rendering/utils/BeamingHelper.d.ts +92 -0
- package/dist/types/alphatab/src/rendering/utils/BeatBounds.d.ts +52 -0
- package/dist/types/alphatab/src/rendering/utils/Bounds.d.ts +23 -0
- package/dist/types/alphatab/src/rendering/utils/BoundsLookup.d.ts +98 -0
- package/dist/types/alphatab/src/rendering/utils/ElementStyleHelper.d.ts +29 -0
- package/dist/types/alphatab/src/rendering/utils/MasterBarBounds.d.ts +64 -0
- package/dist/types/alphatab/src/rendering/utils/NoteBounds.d.ts +25 -0
- package/dist/types/alphatab/src/rendering/utils/StaffSystemBounds.d.ts +45 -0
- package/dist/types/alphatab/src/synth/ActiveBeatsChangedEventArgs.d.ts +12 -0
- package/dist/types/alphatab/src/synth/AlphaSynth.d.ts +248 -0
- package/dist/types/alphatab/src/synth/AlphaSynthWrapper.d.ts +92 -0
- package/dist/types/alphatab/src/synth/BackingTrackPlayer.d.ts +53 -0
- package/dist/types/alphatab/src/synth/ExternalMediaPlayer.d.ts +55 -0
- package/dist/types/alphatab/src/synth/IAlphaSynth.d.ts +271 -0
- package/dist/types/alphatab/src/synth/IAudioExporter.d.ts +127 -0
- package/dist/types/alphatab/src/synth/IAudioSampleSynthesizer.d.ts +126 -0
- package/dist/types/alphatab/src/synth/ISynthOutput.d.ts +90 -0
- package/dist/types/alphatab/src/synth/MidiEventsPlayedEventArgs.d.ts +16 -0
- package/dist/types/alphatab/src/synth/MidiFileSequencer.d.ts +98 -0
- package/dist/types/alphatab/src/synth/PlaybackRange.d.ts +14 -0
- package/dist/types/alphatab/src/synth/PlaybackRangeChangedEventArgs.d.ts +16 -0
- package/dist/types/alphatab/src/synth/PlayerState.d.ts +14 -0
- package/dist/types/alphatab/src/synth/PlayerStateChangedEventArgs.d.ts +21 -0
- package/dist/types/alphatab/src/synth/PositionChangedEventArgs.d.ts +44 -0
- package/dist/types/alphatab/src/synth/SynthConstants.d.ts +30 -0
- package/dist/types/alphatab/src/synth/SynthHelper.d.ts +9 -0
- package/dist/types/alphatab/src/synth/_barrel.d.ts +19 -0
- package/dist/types/alphatab/src/synth/ds/CircularSampleBuffer.d.ts +38 -0
- package/dist/types/alphatab/src/synth/ds/Queue.d.ts +13 -0
- package/dist/types/alphatab/src/synth/soundfont/Hydra.d.ts +133 -0
- package/dist/types/alphatab/src/synth/soundfont/RiffChunk.d.ts +10 -0
- package/dist/types/alphatab/src/synth/synthesis/Channel.d.ts +21 -0
- package/dist/types/alphatab/src/synth/synthesis/Channels.d.ts +11 -0
- package/dist/types/alphatab/src/synth/synthesis/Envelope.d.ts +16 -0
- package/dist/types/alphatab/src/synth/synthesis/LoopMode.d.ts +8 -0
- package/dist/types/alphatab/src/synth/synthesis/OutputMode.d.ts +18 -0
- package/dist/types/alphatab/src/synth/synthesis/Preset.d.ts +10 -0
- package/dist/types/alphatab/src/synth/synthesis/Region.d.ts +110 -0
- package/dist/types/alphatab/src/synth/synthesis/SynthEvent.d.ts +12 -0
- package/dist/types/alphatab/src/synth/synthesis/TinySoundFont.d.ts +252 -0
- package/dist/types/alphatab/src/synth/synthesis/Voice.d.ts +43 -0
- package/dist/types/alphatab/src/synth/synthesis/VoiceEnvelope.d.ts +31 -0
- package/dist/types/alphatab/src/synth/synthesis/VoiceLfo.d.ts +10 -0
- package/dist/types/alphatab/src/synth/synthesis/VoiceLowPass.d.ts +16 -0
- package/dist/types/alphatab/src/synth/vorbis/IntBitReader.d.ts +26 -0
- package/dist/types/alphatab/src/synth/vorbis/OggReader.d.ts +23 -0
- package/dist/types/alphatab/src/synth/vorbis/VorbisFile.d.ts +9 -0
- package/dist/types/alphatab/src/synth/vorbis/VorbisStream.d.ts +13 -0
- package/dist/types/alphatab/src/synth/vorbis/VorbisStreamDecoder.d.ts +260 -0
- package/dist/types/alphatab/src/synth/vorbis/VorbisStreamReader.d.ts +49 -0
- package/dist/types/alphatab/src/util/FontLoadingChecker.d.ts +16 -0
- package/dist/types/alphatab/src/util/Lazy.d.ts +12 -0
- package/dist/types/alphatab/src/xml/XmlDocument.d.ts +10 -0
- package/dist/types/alphatab/src/xml/XmlError.d.ts +9 -0
- package/dist/types/alphatab/src/xml/XmlNode.d.ts +34 -0
- package/dist/types/alphatab/src/xml/XmlParser.d.ts +39 -0
- package/dist/types/alphatab/src/xml/XmlWriter.d.ts +20 -0
- package/dist/types/alphatab/src/zip/Crc32.d.ts +32 -0
- package/dist/types/alphatab/src/zip/Deflater.d.ts +74 -0
- package/dist/types/alphatab/src/zip/DeflaterConstants.d.ts +20 -0
- package/dist/types/alphatab/src/zip/DeflaterEngine.d.ts +124 -0
- package/dist/types/alphatab/src/zip/DeflaterHuffman.d.ts +76 -0
- package/dist/types/alphatab/src/zip/HuffTools.d.ts +11 -0
- package/dist/types/alphatab/src/zip/Huffman.d.ts +28 -0
- package/dist/types/alphatab/src/zip/Inflate.d.ts +40 -0
- package/dist/types/alphatab/src/zip/PendingBuffer.d.ts +65 -0
- package/dist/types/alphatab/src/zip/ZipEntry.d.ts +14 -0
- package/dist/types/alphatab/src/zip/ZipReader.d.ts +11 -0
- package/dist/types/alphatab/src/zip/ZipWriter.d.ts +16 -0
- package/dist/types/alphatex/src/common.d.ts +4 -0
- package/dist/types/alphatex/src/definitions.d.ts +8 -0
- package/dist/types/alphatex/src/enum.d.ts +48 -0
- package/dist/types/alphatex/src/metadata/bar/ac.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/accidentals.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/ae.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/barlineleft.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/barlineright.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/clef.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/db.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/ft.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/jump.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/ks.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/ottava.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/rc.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/ro.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/scale.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/section.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/simile.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/spd.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/sph.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/spu.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/sync.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/tempo.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/tf.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/ts.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/bar/width.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/album.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/artist.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/bracketextendmode.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/copyright.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/copyright2.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/defaultsystemslayout.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/firstsystemtracknamemode.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/firstsystemtracknameorientation.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/hidedynamics.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/instructions.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/multibarrest.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/multitracktracknamepolicy.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/music.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/notices.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/othersystemtracknamemode.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/othersystemtracknameorientation.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/showdynamics.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/singletracktracknamepolicy.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/subtitle.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/systemslayout.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/tab.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/title.d.ts +4 -0
- package/dist/types/alphatex/src/metadata/score/usesystemsignseparator.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/words.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/score/wordsandmusic.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/staff/articulation.d.ts +3 -0
- package/dist/types/alphatex/src/metadata/staff/capo.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/staff/chord.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/staff/displaytranspose.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/staff/instrument.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/staff/lyrics.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/staff/transpose.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/staff/tuning.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/structural/staff.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/structural/track.d.ts +2 -0
- package/dist/types/alphatex/src/metadata/structural/voice.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/ad.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/au.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/balance.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/bank.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/barre.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/bd.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/beam.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/bu.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/ch.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/cre.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/d.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/dd.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/dec.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/ds.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/dy.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/f.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/fermata.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/fo.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/glpf.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/glpt.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/gr.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/instrument.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/legatoOrigin.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/lyrics.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/ot.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/p.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/rasg.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/s.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/sd.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/slashed.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/spd.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/spe.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/sph.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/spu.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/su.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/tb.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/tbe.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/tempo.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/timer.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/tp.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/tt.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/tu.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/txt.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/v.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/volume.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/vs.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/vw.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/wahc.d.ts +2 -0
- package/dist/types/alphatex/src/properties/beat/waho.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/ac.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/acc.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/ah.d.ts +3 -0
- package/dist/types/alphatex/src/properties/note/b.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/be.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/fh.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/g.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/h.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/hac.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/hide.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/iturn.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/lf.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/lht.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/lmordent.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/lr.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/nh.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/ph.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/pm.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/psd.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/psu.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/rf.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/sh.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/sia.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/sib.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/sl.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/slur.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/sod.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/sou.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/ss.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/st.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/string.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/t.d.ts +3 -0
- package/dist/types/alphatex/src/properties/note/ten.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/th.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/tr.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/turn.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/umordent.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/v.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/vw.d.ts +2 -0
- package/dist/types/alphatex/src/properties/note/x.d.ts +2 -0
- package/dist/types/alphatex/src/types.d.ts +161 -0
- package/dist/types/lsp/src/index.d.ts +21 -0
- package/dist/types/lsp/src/server/completion.d.ts +3 -0
- package/dist/types/lsp/src/server/diagnostics.d.ts +2 -0
- package/dist/types/lsp/src/server/hover.d.ts +2 -0
- package/dist/types/lsp/src/server/index.d.ts +13 -0
- package/dist/types/lsp/src/server/signatureHelp.d.ts +2 -0
- package/dist/types/lsp/src/server/types.d.ts +15 -0
- package/dist/types/lsp/src/server/utils.d.ts +6 -0
- package/dist/types/lsp/test/placeholder.test.d.ts +1 -0
- package/dist/types/lsp/vite.config.d.ts +2 -0
- package/dist/types/tooling/src/typescript.d.ts +9 -0
- package/dist/types/tooling/src/vite.d.ts +13 -0
- package/dist/types/tooling/src/vite.plugin.dts.d.ts +1 -0
- package/dist/types/tooling/src/vite.plugin.min.d.ts +3 -0
- package/package.json +59 -0
- package/src/alphatex.tmLanguage.json +151 -0
- package/src/index.ts +56 -0
- package/src/language-configuration.json +70 -0
- package/src/server/completion.ts +553 -0
- package/src/server/diagnostics.ts +126 -0
- package/src/server/hover.ts +262 -0
- package/src/server/index.ts +96 -0
- package/src/server/signatureHelp.ts +206 -0
- package/src/server/types.ts +28 -0
- package/src/server/utils.ts +111 -0
- package/test/placeholder.test.ts +3 -0
- package/tsconfig.json +3 -0
- package/vite.config.ts +21 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import type { Staff } from "./Staff";
|
|
2
|
+
/**
|
|
3
|
+
* A chord definition.
|
|
4
|
+
* @json
|
|
5
|
+
* @json_strict
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class Chord {
|
|
9
|
+
/**
|
|
10
|
+
* Gets or sets the name of the chord
|
|
11
|
+
*/
|
|
12
|
+
name: string;
|
|
13
|
+
/**
|
|
14
|
+
* Indicates the first fret of the chord diagram.
|
|
15
|
+
*/
|
|
16
|
+
firstFret: number;
|
|
17
|
+
/**
|
|
18
|
+
* Gets or sets the frets played on the individual strings for this chord.
|
|
19
|
+
* - The order in this list goes from the highest string to the lowest string.
|
|
20
|
+
* - -1 indicates that the string is not played.
|
|
21
|
+
*/
|
|
22
|
+
strings: number[];
|
|
23
|
+
/**
|
|
24
|
+
* Gets or sets a list of frets where the finger should hold a barre
|
|
25
|
+
*/
|
|
26
|
+
barreFrets: number[];
|
|
27
|
+
/**
|
|
28
|
+
* Gets or sets the staff the chord belongs to.
|
|
29
|
+
* @json_ignore
|
|
30
|
+
*/
|
|
31
|
+
staff: Staff;
|
|
32
|
+
/**
|
|
33
|
+
* Gets or sets whether the chord name is shown above the chord diagram.
|
|
34
|
+
*/
|
|
35
|
+
showName: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Gets or sets whether the chord diagram is shown.
|
|
38
|
+
*/
|
|
39
|
+
showDiagram: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Gets or sets whether the fingering is shown below the chord diagram.
|
|
42
|
+
*/
|
|
43
|
+
showFingering: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Gets a unique id for this chord based on its properties.
|
|
46
|
+
*/
|
|
47
|
+
get uniqueId(): string;
|
|
48
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This public enumeration lists all supported Clefs.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum Clef {
|
|
6
|
+
/**
|
|
7
|
+
* Neutral clef.
|
|
8
|
+
*/
|
|
9
|
+
Neutral = 0,
|
|
10
|
+
/**
|
|
11
|
+
* C3 clef
|
|
12
|
+
*/
|
|
13
|
+
C3 = 1,
|
|
14
|
+
/**
|
|
15
|
+
* C4 clef
|
|
16
|
+
*/
|
|
17
|
+
C4 = 2,
|
|
18
|
+
/**
|
|
19
|
+
* F4 clef
|
|
20
|
+
*/
|
|
21
|
+
F4 = 3,
|
|
22
|
+
/**
|
|
23
|
+
* G2 clef
|
|
24
|
+
*/
|
|
25
|
+
G2 = 4
|
|
26
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Describes a color for rendering.
|
|
3
|
+
* If provided as string one of these formats needs to be used: #RGB, #RGBA, #RRGGBB, #RRGGBBAA, rgb(r,g,b), rgba(r,g,b,a)
|
|
4
|
+
* If provided as number a raw RGBA value needs to be used.
|
|
5
|
+
*
|
|
6
|
+
* @target web
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export type ColorJson = Color | string | number;
|
|
10
|
+
/**
|
|
11
|
+
* @json_immutable
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export declare class Color {
|
|
15
|
+
static readonly BlackRgb: string;
|
|
16
|
+
/**
|
|
17
|
+
* Initializes a new instance of the {@link Color} class.
|
|
18
|
+
* @param r The red component.
|
|
19
|
+
* @param g The green component.
|
|
20
|
+
* @param b The blue component.
|
|
21
|
+
* @param a The alpha component.
|
|
22
|
+
*/
|
|
23
|
+
constructor(r: number, g: number, b: number, a?: number);
|
|
24
|
+
updateRgba(): void;
|
|
25
|
+
/**
|
|
26
|
+
* Gets or sets the raw RGBA value.
|
|
27
|
+
*/
|
|
28
|
+
raw: number;
|
|
29
|
+
get a(): number;
|
|
30
|
+
get r(): number;
|
|
31
|
+
get g(): number;
|
|
32
|
+
get b(): number;
|
|
33
|
+
/**
|
|
34
|
+
* Gets the RGBA hex string to use in CSS areas.
|
|
35
|
+
*/
|
|
36
|
+
rgba: string;
|
|
37
|
+
static random(opacity?: number): Color;
|
|
38
|
+
static fromJson(v: unknown): Color | null;
|
|
39
|
+
static toJson(obj: Color | null): number | null;
|
|
40
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all Crescendo and Decrescendo types.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum CrescendoType {
|
|
6
|
+
/**
|
|
7
|
+
* No crescendo applied.
|
|
8
|
+
*/
|
|
9
|
+
None = 0,
|
|
10
|
+
/**
|
|
11
|
+
* Normal crescendo applied.
|
|
12
|
+
*/
|
|
13
|
+
Crescendo = 1,
|
|
14
|
+
/**
|
|
15
|
+
* Normal decrescendo applied.
|
|
16
|
+
*/
|
|
17
|
+
Decrescendo = 2
|
|
18
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all directions which can be applied to a masterbar.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum Direction {
|
|
6
|
+
TargetFine = 0,
|
|
7
|
+
TargetSegno = 1,
|
|
8
|
+
TargetSegnoSegno = 2,
|
|
9
|
+
TargetCoda = 3,
|
|
10
|
+
TargetDoubleCoda = 4,
|
|
11
|
+
JumpDaCapo = 5,
|
|
12
|
+
JumpDaCapoAlCoda = 6,
|
|
13
|
+
JumpDaCapoAlDoubleCoda = 7,
|
|
14
|
+
JumpDaCapoAlFine = 8,
|
|
15
|
+
JumpDalSegno = 9,
|
|
16
|
+
JumpDalSegnoAlCoda = 10,
|
|
17
|
+
JumpDalSegnoAlDoubleCoda = 11,
|
|
18
|
+
JumpDalSegnoAlFine = 12,
|
|
19
|
+
JumpDalSegnoSegno = 13,
|
|
20
|
+
JumpDalSegnoSegnoAlCoda = 14,
|
|
21
|
+
JumpDalSegnoSegnoAlDoubleCoda = 15,
|
|
22
|
+
JumpDalSegnoSegnoAlFine = 16,
|
|
23
|
+
JumpDaCoda = 17,
|
|
24
|
+
JumpDaDoubleCoda = 18
|
|
25
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all durations of a beat.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum Duration {
|
|
6
|
+
/**
|
|
7
|
+
* A quadruple whole note duration
|
|
8
|
+
*/
|
|
9
|
+
QuadrupleWhole = -4,
|
|
10
|
+
/**
|
|
11
|
+
* A double whole note duration
|
|
12
|
+
*/
|
|
13
|
+
DoubleWhole = -2,
|
|
14
|
+
/**
|
|
15
|
+
* A whole note duration
|
|
16
|
+
*/
|
|
17
|
+
Whole = 1,
|
|
18
|
+
/**
|
|
19
|
+
* A 1/2 note duration
|
|
20
|
+
*/
|
|
21
|
+
Half = 2,
|
|
22
|
+
/**
|
|
23
|
+
* A 1/4 note duration
|
|
24
|
+
*/
|
|
25
|
+
Quarter = 4,
|
|
26
|
+
/**
|
|
27
|
+
* A 1/8 note duration
|
|
28
|
+
*/
|
|
29
|
+
Eighth = 8,
|
|
30
|
+
/**
|
|
31
|
+
* A 1/16 note duration
|
|
32
|
+
*/
|
|
33
|
+
Sixteenth = 16,
|
|
34
|
+
/**
|
|
35
|
+
* A 1/32 note duration
|
|
36
|
+
*/
|
|
37
|
+
ThirtySecond = 32,
|
|
38
|
+
/**
|
|
39
|
+
* A 1/64 note duration
|
|
40
|
+
*/
|
|
41
|
+
SixtyFourth = 64,
|
|
42
|
+
/**
|
|
43
|
+
* A 1/128 note duration
|
|
44
|
+
*/
|
|
45
|
+
OneHundredTwentyEighth = 128,
|
|
46
|
+
/**
|
|
47
|
+
* A 1/256 note duration
|
|
48
|
+
*/
|
|
49
|
+
TwoHundredFiftySixth = 256
|
|
50
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all dynamics.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum DynamicValue {
|
|
6
|
+
/**
|
|
7
|
+
* pianississimo (very very soft)
|
|
8
|
+
*/
|
|
9
|
+
PPP = 0,
|
|
10
|
+
/**
|
|
11
|
+
* pianissimo (very soft)
|
|
12
|
+
*/
|
|
13
|
+
PP = 1,
|
|
14
|
+
/**
|
|
15
|
+
* piano (soft)
|
|
16
|
+
*/
|
|
17
|
+
P = 2,
|
|
18
|
+
/**
|
|
19
|
+
* mezzo-piano (half soft)
|
|
20
|
+
*/
|
|
21
|
+
MP = 3,
|
|
22
|
+
/**
|
|
23
|
+
* mezzo-forte (half loud)
|
|
24
|
+
*/
|
|
25
|
+
MF = 4,
|
|
26
|
+
/**
|
|
27
|
+
* forte (loud)
|
|
28
|
+
*/
|
|
29
|
+
F = 5,
|
|
30
|
+
/**
|
|
31
|
+
* fortissimo (very loud)
|
|
32
|
+
*/
|
|
33
|
+
FF = 6,
|
|
34
|
+
/**
|
|
35
|
+
* fortississimo (very very loud)
|
|
36
|
+
*/
|
|
37
|
+
FFF = 7,
|
|
38
|
+
PPPP = 8,
|
|
39
|
+
PPPPP = 9,
|
|
40
|
+
PPPPPP = 10,
|
|
41
|
+
FFFF = 11,
|
|
42
|
+
FFFFF = 12,
|
|
43
|
+
FFFFFF = 13,
|
|
44
|
+
/**
|
|
45
|
+
* Sforzando
|
|
46
|
+
*/
|
|
47
|
+
SF = 14,
|
|
48
|
+
/**
|
|
49
|
+
* SforzandoPiano
|
|
50
|
+
*/
|
|
51
|
+
SFP = 15,
|
|
52
|
+
/**
|
|
53
|
+
* SforzandoPianissimo
|
|
54
|
+
*/
|
|
55
|
+
SFPP = 16,
|
|
56
|
+
/**
|
|
57
|
+
* FortePiano
|
|
58
|
+
*/
|
|
59
|
+
FP = 17,
|
|
60
|
+
/**
|
|
61
|
+
* Rinforzando 1
|
|
62
|
+
*/
|
|
63
|
+
RF = 18,
|
|
64
|
+
/**
|
|
65
|
+
* Rinforzando 2
|
|
66
|
+
*/
|
|
67
|
+
RFZ = 19,
|
|
68
|
+
/**
|
|
69
|
+
* Sforzato
|
|
70
|
+
*/
|
|
71
|
+
SFZ = 20,
|
|
72
|
+
/**
|
|
73
|
+
* SforzatoFF
|
|
74
|
+
*/
|
|
75
|
+
SFFZ = 21,
|
|
76
|
+
/**
|
|
77
|
+
* Forzando
|
|
78
|
+
*/
|
|
79
|
+
FZ = 22,
|
|
80
|
+
/**
|
|
81
|
+
* Niente
|
|
82
|
+
*/
|
|
83
|
+
N = 23,
|
|
84
|
+
/**
|
|
85
|
+
* Poco forte
|
|
86
|
+
*/
|
|
87
|
+
PF = 24,
|
|
88
|
+
/**
|
|
89
|
+
* SforzatoPiano
|
|
90
|
+
*/
|
|
91
|
+
SFZP = 25
|
|
92
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Color } from "./Color";
|
|
2
|
+
/**
|
|
3
|
+
* Defines the custom styles for an element in the music sheet (like bars, voices, notes etc).
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export declare class ElementStyle<TSubElements extends number> {
|
|
7
|
+
/**
|
|
8
|
+
* Changes the color of the specified sub-element within the element this style container belongs to.
|
|
9
|
+
* Null indicates that a certain element should use the default color from {@link RenderingResources}
|
|
10
|
+
* even if some "higher level" element changes colors.
|
|
11
|
+
*/
|
|
12
|
+
colors: Map<TSubElements, Color | null>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists the different fade types.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum FadeType {
|
|
6
|
+
/**
|
|
7
|
+
* No fading
|
|
8
|
+
*/
|
|
9
|
+
None = 0,
|
|
10
|
+
/**
|
|
11
|
+
* Fade-in the sound.
|
|
12
|
+
*/
|
|
13
|
+
FadeIn = 1,
|
|
14
|
+
/**
|
|
15
|
+
* Fade-out the sound.
|
|
16
|
+
*/
|
|
17
|
+
FadeOut = 2,
|
|
18
|
+
/**
|
|
19
|
+
* Fade-in and then fade-out the sound.
|
|
20
|
+
*/
|
|
21
|
+
VolumeSwell = 3
|
|
22
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all types of fermatas
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum FermataType {
|
|
6
|
+
/**
|
|
7
|
+
* A short fermata (triangle symbol)
|
|
8
|
+
*/
|
|
9
|
+
Short = 0,
|
|
10
|
+
/**
|
|
11
|
+
* A medium fermata (round symbol)
|
|
12
|
+
*/
|
|
13
|
+
Medium = 1,
|
|
14
|
+
/**
|
|
15
|
+
* A long fermata (rectangular symbol)
|
|
16
|
+
*/
|
|
17
|
+
Long = 2
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Represents a fermata.
|
|
21
|
+
* @json
|
|
22
|
+
* @json_strict
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export declare class Fermata {
|
|
26
|
+
/**
|
|
27
|
+
* Gets or sets the type of fermata.
|
|
28
|
+
*/
|
|
29
|
+
type: FermataType;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets the actual length of the fermata.
|
|
32
|
+
*/
|
|
33
|
+
length: number;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all fingers.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum Fingers {
|
|
6
|
+
/**
|
|
7
|
+
* Unknown type (not documented)
|
|
8
|
+
*/
|
|
9
|
+
Unknown = -2,
|
|
10
|
+
/**
|
|
11
|
+
* No finger, dead note
|
|
12
|
+
*/
|
|
13
|
+
NoOrDead = -1,
|
|
14
|
+
/**
|
|
15
|
+
* The thumb
|
|
16
|
+
*/
|
|
17
|
+
Thumb = 0,
|
|
18
|
+
/**
|
|
19
|
+
* The index finger
|
|
20
|
+
*/
|
|
21
|
+
IndexFinger = 1,
|
|
22
|
+
/**
|
|
23
|
+
* The middle finger
|
|
24
|
+
*/
|
|
25
|
+
MiddleFinger = 2,
|
|
26
|
+
/**
|
|
27
|
+
* The annular finger
|
|
28
|
+
*/
|
|
29
|
+
AnnularFinger = 3,
|
|
30
|
+
/**
|
|
31
|
+
* The little finger
|
|
32
|
+
*/
|
|
33
|
+
LittleFinger = 4
|
|
34
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all flags for font styles.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum FontStyle {
|
|
6
|
+
/**
|
|
7
|
+
* No flags.
|
|
8
|
+
*/
|
|
9
|
+
Plain = 0,
|
|
10
|
+
/**
|
|
11
|
+
* Font is italic.
|
|
12
|
+
*/
|
|
13
|
+
Italic = 1
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Lists all font weight values.
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare enum FontWeight {
|
|
20
|
+
/**
|
|
21
|
+
* Not bold
|
|
22
|
+
*/
|
|
23
|
+
Regular = 0,
|
|
24
|
+
/**
|
|
25
|
+
* Font is bold
|
|
26
|
+
*/
|
|
27
|
+
Bold = 1
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Describes a font to be used.
|
|
31
|
+
* If specified as string, a CSS `font` shorthand property compliant value needs to be used.
|
|
32
|
+
* @target web
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export type FontJson = Font | string | {
|
|
36
|
+
families: string[];
|
|
37
|
+
size: number;
|
|
38
|
+
style: FontStyle | keyof typeof FontStyle;
|
|
39
|
+
weight: FontWeight | keyof typeof FontWeight;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @json_immutable
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export declare class Font {
|
|
46
|
+
private _css;
|
|
47
|
+
private _cssScale;
|
|
48
|
+
private _families;
|
|
49
|
+
private _style;
|
|
50
|
+
private _weight;
|
|
51
|
+
private _size;
|
|
52
|
+
private _reset;
|
|
53
|
+
/**
|
|
54
|
+
* Gets the first font family name.
|
|
55
|
+
* @deprecated Consider using {@link families} for multi font family support.
|
|
56
|
+
*/
|
|
57
|
+
get family(): string;
|
|
58
|
+
/**
|
|
59
|
+
* Sets the font family list.
|
|
60
|
+
* @deprecated Consider using {@link families} for multi font family support.
|
|
61
|
+
*/
|
|
62
|
+
set family(value: string);
|
|
63
|
+
/**
|
|
64
|
+
* Gets the font family name.
|
|
65
|
+
*/
|
|
66
|
+
get families(): string[];
|
|
67
|
+
/**
|
|
68
|
+
* Sets the font family name.
|
|
69
|
+
*/
|
|
70
|
+
set families(value: string[]);
|
|
71
|
+
/**
|
|
72
|
+
* Gets the font size in pixels.
|
|
73
|
+
*/
|
|
74
|
+
get size(): number;
|
|
75
|
+
/**
|
|
76
|
+
* Sets the font size in pixels.
|
|
77
|
+
*/
|
|
78
|
+
set size(value: number);
|
|
79
|
+
/**
|
|
80
|
+
* Gets the font style.
|
|
81
|
+
*/
|
|
82
|
+
get style(): FontStyle;
|
|
83
|
+
/**
|
|
84
|
+
* Sets the font style.
|
|
85
|
+
*/
|
|
86
|
+
set style(value: FontStyle);
|
|
87
|
+
/**
|
|
88
|
+
* Gets the font weight.
|
|
89
|
+
*/
|
|
90
|
+
get weight(): FontWeight;
|
|
91
|
+
/**
|
|
92
|
+
* Gets or sets the font weight.
|
|
93
|
+
*/
|
|
94
|
+
set weight(value: FontWeight);
|
|
95
|
+
get isBold(): boolean;
|
|
96
|
+
get isItalic(): boolean;
|
|
97
|
+
/**
|
|
98
|
+
* Initializes a new instance of the {@link Font} class.
|
|
99
|
+
* @param family The family.
|
|
100
|
+
* @param size The size.
|
|
101
|
+
* @param style The style.
|
|
102
|
+
* @param weight The weight.
|
|
103
|
+
*/
|
|
104
|
+
constructor(family: string, size: number, style?: FontStyle, weight?: FontWeight);
|
|
105
|
+
withSize(newSize: number): Font;
|
|
106
|
+
/**
|
|
107
|
+
* Initializes a new instance of the {@link Font} class.
|
|
108
|
+
* @param families The families.
|
|
109
|
+
* @param size The size.
|
|
110
|
+
* @param style The style.
|
|
111
|
+
* @param weight The weight.
|
|
112
|
+
*/
|
|
113
|
+
static withFamilyList(families: string[], size: number, style?: FontStyle, weight?: FontWeight): Font;
|
|
114
|
+
toCssString(scale?: number): string;
|
|
115
|
+
static fromJson(v: unknown): Font | undefined;
|
|
116
|
+
static toJson(font: Font | undefined): Map<string, unknown> | undefined;
|
|
117
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all golpe types.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum GolpeType {
|
|
6
|
+
/**
|
|
7
|
+
* No Golpe played.
|
|
8
|
+
*/
|
|
9
|
+
None = 0,
|
|
10
|
+
/**
|
|
11
|
+
* Play a golpe with the thumb.
|
|
12
|
+
*/
|
|
13
|
+
Thumb = 1,
|
|
14
|
+
/**
|
|
15
|
+
* Play a golpe with a finger.
|
|
16
|
+
*/
|
|
17
|
+
Finger = 2
|
|
18
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { Beat } from "./Beat";
|
|
2
|
+
/**
|
|
3
|
+
* Represents a group of grace beats that belong together
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export declare class GraceGroup {
|
|
7
|
+
/**
|
|
8
|
+
* All beats within this group.
|
|
9
|
+
*/
|
|
10
|
+
beats: Beat[];
|
|
11
|
+
/**
|
|
12
|
+
* Gets a unique ID for this grace group.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
/**
|
|
16
|
+
* true if the grace beat are followed by a normal beat within the same
|
|
17
|
+
* bar.
|
|
18
|
+
*/
|
|
19
|
+
isComplete: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Adds a new beat to this group
|
|
22
|
+
* @param beat The beat to add
|
|
23
|
+
*/
|
|
24
|
+
addBeat(beat: Beat): void;
|
|
25
|
+
finish(): void;
|
|
26
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all types of grace notes
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum GraceType {
|
|
6
|
+
/**
|
|
7
|
+
* No grace, normal beat.
|
|
8
|
+
*/
|
|
9
|
+
None = 0,
|
|
10
|
+
/**
|
|
11
|
+
* The beat contains on-beat grace notes.
|
|
12
|
+
*/
|
|
13
|
+
OnBeat = 1,
|
|
14
|
+
/**
|
|
15
|
+
* The beat contains before-beat grace notes.
|
|
16
|
+
*/
|
|
17
|
+
BeforeBeat = 2,
|
|
18
|
+
/**
|
|
19
|
+
* The beat contains very special bend-grace notes used in SongBook style displays.
|
|
20
|
+
*/
|
|
21
|
+
BendGrace = 3
|
|
22
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lists all harmonic types.
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export declare enum HarmonicType {
|
|
6
|
+
/**
|
|
7
|
+
* No harmonics.
|
|
8
|
+
*/
|
|
9
|
+
None = 0,
|
|
10
|
+
/**
|
|
11
|
+
* Natural harmonic
|
|
12
|
+
*/
|
|
13
|
+
Natural = 1,
|
|
14
|
+
/**
|
|
15
|
+
* Artificial harmonic
|
|
16
|
+
*/
|
|
17
|
+
Artificial = 2,
|
|
18
|
+
/**
|
|
19
|
+
* Pinch harmonics
|
|
20
|
+
*/
|
|
21
|
+
Pinch = 3,
|
|
22
|
+
/**
|
|
23
|
+
* Tap harmonics
|
|
24
|
+
*/
|
|
25
|
+
Tap = 4,
|
|
26
|
+
/**
|
|
27
|
+
* Semi harmonics
|
|
28
|
+
*/
|
|
29
|
+
Semi = 5,
|
|
30
|
+
/**
|
|
31
|
+
* Feedback harmonics
|
|
32
|
+
*/
|
|
33
|
+
Feedback = 6
|
|
34
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { Duration } from "./Duration";
|
|
2
|
+
import { MusicFontSymbol } from "./MusicFontSymbol";
|
|
3
|
+
/**
|
|
4
|
+
* This public enum lists all base line modes
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare enum TechniqueSymbolPlacement {
|
|
8
|
+
/**
|
|
9
|
+
* Symbol is shown above
|
|
10
|
+
*/
|
|
11
|
+
Above = 0,
|
|
12
|
+
/**
|
|
13
|
+
* Symbol is shown inside.
|
|
14
|
+
*/
|
|
15
|
+
Inside = 1,
|
|
16
|
+
/**
|
|
17
|
+
* Symbol is shown below.
|
|
18
|
+
*/
|
|
19
|
+
Below = 2,
|
|
20
|
+
/**
|
|
21
|
+
* Symbol is shown outside.
|
|
22
|
+
*/
|
|
23
|
+
Outside = 3
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Describes an instrument articulation which is used for percussions.
|
|
27
|
+
* @json
|
|
28
|
+
* @json_strict
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class InstrumentArticulation {
|
|
32
|
+
/**
|
|
33
|
+
* Gets or sets the type of the element for which this articulation is for.
|
|
34
|
+
*/
|
|
35
|
+
elementType: string;
|
|
36
|
+
/**
|
|
37
|
+
* The line the note head should be shown for standard notation.
|
|
38
|
+
*
|
|
39
|
+
* @remarks
|
|
40
|
+
* This value is a bit special and its semantics are adopted from Guitar Pro:
|
|
41
|
+
* Staff lines are actually "steps" including lines and spaces on the staff.
|
|
42
|
+
* 1 means the note is on the top line of the staff and from there its counting downwards.
|
|
43
|
+
*/
|
|
44
|
+
staffLine: number;
|
|
45
|
+
/**
|
|
46
|
+
* Gets or sets the note head to display by default.
|
|
47
|
+
*/
|
|
48
|
+
noteHeadDefault: MusicFontSymbol;
|
|
49
|
+
/**
|
|
50
|
+
* Gets or sets the note head to display for half duration notes.
|
|
51
|
+
*/
|
|
52
|
+
noteHeadHalf: MusicFontSymbol;
|
|
53
|
+
/**
|
|
54
|
+
* Gets or sets the note head to display for whole duration notes.
|
|
55
|
+
*/
|
|
56
|
+
noteHeadWhole: MusicFontSymbol;
|
|
57
|
+
/**
|
|
58
|
+
* Gets or sets which additional technique symbol should be placed for the note head.
|
|
59
|
+
*/
|
|
60
|
+
techniqueSymbol: MusicFontSymbol;
|
|
61
|
+
/**
|
|
62
|
+
* Gets or sets where the technique symbol should be placed.
|
|
63
|
+
*/
|
|
64
|
+
techniqueSymbolPlacement: TechniqueSymbolPlacement;
|
|
65
|
+
/**
|
|
66
|
+
* Gets or sets which midi key to use when playing the note.
|
|
67
|
+
*/
|
|
68
|
+
outputMidiNumber: number;
|
|
69
|
+
constructor(elementType?: string, staffLine?: number, outputMidiNumber?: number, noteHeadDefault?: MusicFontSymbol, noteHeadHalf?: MusicFontSymbol, noteHeadWhole?: MusicFontSymbol, techniqueSymbol?: MusicFontSymbol, techniqueSymbolPlacement?: TechniqueSymbolPlacement);
|
|
70
|
+
getSymbol(duration: Duration): MusicFontSymbol;
|
|
71
|
+
}
|