musicxml-io 0.3.4 → 0.3.5

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.
@@ -1,4 +1,4 @@
1
- import { S as Score, M as Measure, n as TimeSignature, f as Part, P as Pitch, N as NoteEntry, K as KeySignature, C as Clef, ac as ArticulationType, m as DynamicsValue, ad as OrnamentType, i as NoteType } from './types-D0G3_ykl.mjs';
1
+ import { S as Score, M as Measure, n as TimeSignature, f as Part, P as Pitch, N as NoteEntry, K as KeySignature, C as Clef, ac as ArticulationType, m as DynamicsValue, ad as OrnamentType, i as NoteType } from './types-BFmNsRNw.mjs';
2
2
 
3
3
  type ValidationErrorCode = 'MISSING_DIVISIONS' | 'INVALID_DIVISIONS' | 'MEASURE_DURATION_MISMATCH' | 'MEASURE_DURATION_OVERFLOW' | 'MEASURE_DURATION_UNDERFLOW' | 'VOICE_INCOMPLETE' | 'VOICE_GAP' | 'NEGATIVE_POSITION' | 'BACKUP_EXCEEDS_POSITION' | 'TIE_START_WITHOUT_STOP' | 'TIE_STOP_WITHOUT_START' | 'TIE_PITCH_MISMATCH' | 'BEAM_BEGIN_WITHOUT_END' | 'BEAM_END_WITHOUT_BEGIN' | 'SLUR_START_WITHOUT_STOP' | 'SLUR_STOP_WITHOUT_START' | 'TUPLET_START_WITHOUT_STOP' | 'TUPLET_STOP_WITHOUT_START' | 'PART_ID_NOT_IN_PART_LIST' | 'PART_LIST_ID_NOT_IN_PARTS' | 'PART_MEASURE_COUNT_MISMATCH' | 'PART_MEASURE_NUMBER_MISMATCH' | 'PART_GROUP_START_WITHOUT_STOP' | 'PART_GROUP_STOP_WITHOUT_START' | 'DUPLICATE_PART_ID' | 'INVALID_VOICE_NUMBER' | 'INVALID_STAFF_NUMBER' | 'STAFF_EXCEEDS_STAVES' | 'MISSING_STAVES_DECLARATION' | 'STAVES_DECLARATION_MISMATCH' | 'MISSING_CLEF_FOR_STAFF' | 'CLEF_STAFF_EXCEEDS_STAVES' | 'INVALID_DURATION' | 'EMPTY_MEASURE';
4
4
  type ValidationLevel = 'error' | 'warning' | 'info';
@@ -8,7 +8,7 @@ interface ValidationLocation {
8
8
  measureIndex?: number;
9
9
  measureNumber?: string;
10
10
  entryIndex?: number;
11
- voice?: number;
11
+ voice?: string;
12
12
  staff?: number;
13
13
  }
14
14
  interface ValidationError {
@@ -197,7 +197,7 @@ type OperationErrorCode = 'NOTE_CONFLICT' | 'EXCEEDS_MEASURE' | 'INVALID_POSITIO
197
197
  interface InsertNoteOptions {
198
198
  partIndex: number;
199
199
  measureIndex: number;
200
- voice: number;
200
+ voice: string;
201
201
  staff?: number;
202
202
  position: number;
203
203
  pitch: Pitch;
@@ -310,7 +310,7 @@ declare function lowerAccidental(score: Score, options: LowerAccidentalOptions):
310
310
  interface AddVoiceOptions {
311
311
  partIndex: number;
312
312
  measureIndex: number;
313
- voice: number;
313
+ voice: string;
314
314
  staff?: number;
315
315
  }
316
316
  /**
@@ -480,7 +480,7 @@ declare const addNote: (score: Score, options: {
480
480
  partIndex: number;
481
481
  measureIndex: number;
482
482
  staff?: number;
483
- voice: number;
483
+ voice: string;
484
484
  position: number;
485
485
  note: Omit<NoteEntry, "type" | "voice" | "staff">;
486
486
  }) => Score;
@@ -518,7 +518,7 @@ declare const addNoteChecked: (score: Score, options: {
518
518
  partIndex: number;
519
519
  measureIndex: number;
520
520
  staff?: number;
521
- voice: number;
521
+ voice: string;
522
522
  position: number;
523
523
  note: Omit<NoteEntry, "type" | "voice" | "staff">;
524
524
  }) => OperationResult<Score>;
@@ -618,7 +618,7 @@ interface AutoBeamOptions {
618
618
  partIndex: number;
619
619
  measureIndex: number;
620
620
  /** Optional voice filter */
621
- voice?: number;
621
+ voice?: string;
622
622
  /** Group by beat (default: true) */
623
623
  groupByBeat?: boolean;
624
624
  }
@@ -637,7 +637,7 @@ interface NoteSelection {
637
637
  measureIndex: number;
638
638
  startPosition: number;
639
639
  endPosition: number;
640
- voice: number;
640
+ voice: string;
641
641
  staff?: number;
642
642
  };
643
643
  /** Copied notes with their relative positions */
@@ -658,7 +658,7 @@ interface CopyNotesOptions {
658
658
  /** End position in the measure (in divisions) */
659
659
  endPosition: number;
660
660
  /** Voice to copy from */
661
- voice: number;
661
+ voice: string;
662
662
  /** Staff to copy from (optional) */
663
663
  staff?: number;
664
664
  }
@@ -677,7 +677,7 @@ interface PasteNotesOptions {
677
677
  /** Target position in the measure */
678
678
  position: number;
679
679
  /** Target voice (defaults to original voice) */
680
- voice?: number;
680
+ voice?: string;
681
681
  /** Target staff (defaults to original staff) */
682
682
  staff?: number;
683
683
  /** Clear existing notes in the paste range (default: true) */
@@ -704,7 +704,7 @@ interface CopyNotesMultiMeasureOptions {
704
704
  /** Ending measure index (inclusive) */
705
705
  endMeasureIndex: number;
706
706
  /** Voice to copy from */
707
- voice: number;
707
+ voice: string;
708
708
  /** Staff to copy from (optional) */
709
709
  staff?: number;
710
710
  }
@@ -716,7 +716,7 @@ interface MultiMeasureSelection {
716
716
  partIndex: number;
717
717
  startMeasureIndex: number;
718
718
  endMeasureIndex: number;
719
- voice: number;
719
+ voice: string;
720
720
  staff?: number;
721
721
  };
722
722
  /** Notes grouped by measure offset */
@@ -738,7 +738,7 @@ interface PasteNotesMultiMeasureOptions {
738
738
  /** Target starting measure index */
739
739
  startMeasureIndex: number;
740
740
  /** Target voice (defaults to original voice) */
741
- voice?: number;
741
+ voice?: string;
742
742
  /** Target staff (defaults to original staff) */
743
743
  staff?: number;
744
744
  /** Clear existing notes in paste measures (default: true) */
@@ -1038,7 +1038,7 @@ interface AddGraceNoteOptions {
1038
1038
  pitch: Pitch;
1039
1039
  noteType?: NoteType;
1040
1040
  slash?: boolean;
1041
- voice?: number;
1041
+ voice?: string;
1042
1042
  staff?: number;
1043
1043
  }
1044
1044
  /**
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
- import { S as Score, P as Pitch, M as Measure, D as DirectionType, a as DirectionEntry, N as NoteEntry, b as PartListEntry, c as PartInfo } from './types-D0G3_ykl.mjs';
2
- export { A as Accidental, j as AccidentalInfo, O as AdjacentNotes, a4 as AssembledLyrics, B as BackupEntry, p as Barline, a5 as BarlineWithContext, a0 as BeamGroup, k as BeamInfo, s as Chord, C as Clef, aa as ClefChangeInfo, w as Credit, v as Defaults, Q as DirectionKind, z as DirectionWithContext, R as DynamicWithContext, m as DynamicsValue, a7 as EndingInfo, E as EntryWithContext, F as ForwardEntry, a2 as HarmonyWithContext, a8 as KeyChangeInfo, K as KeySignature, L as Lyric, a3 as LyricWithContext, g as MeasureAttributes, h as MeasureEntry, l as Notation, a1 as NotationType, t as NoteIteratorItem, i as NoteType, y as NoteWithContext, r as NoteWithPosition, Y as OctaveShiftWithContext, f as Part, e as PartGroup, W as PedalWithContext, H as PositionQueryOptions, u as Print, a6 as RepeatInfo, d as ScoreMetadata, _ as SlurSpan, q as StaffGroup, G as StaffRange, ab as StructuralChanges, U as TempoWithContext, T as TieInfo, Z as TiedNoteGroup, a9 as TimeChangeInfo, n as TimeSignature, o as Transpose, $ as TupletGroup, I as VerticalSlice, V as VoiceGroup, J as VoiceLine, x as VoiceToStaffMap, X as WedgeWithContext } from './types-D0G3_ykl.mjs';
3
- import { V as ValidateOptions, a as ValidationResult } from './index-Dy4LmZRQ.mjs';
4
- export { ba as AddArticulationOptions, bj as AddBeamOptions, c8 as AddBowingOptions, ch as AddBreathMarkOptions, ck as AddCaesuraOptions, aW as AddChordOptions, c2 as AddChordSymbolOptions, bS as AddCodaOptions, bc as AddDynamicsOptions, bM as AddEndingOptions, bz as AddFermataOptions, c5 as AddFingeringOptions, bU as AddGraceNoteOptions, b$ as AddHarmonyOptions, bX as AddLyricOptions, bT as AddNavigationOptions, cd as AddOctaveShiftOptions, bB as AddOrnamentOptions, b2 as AddPartOptions, bD as AddPedalOptions, bH as AddRehearsalMarkOptions, bI as AddRepeatBarlineOptions, bK as AddRepeatOptions, bR as AddSegnoOptions, b8 as AddSlurOptions, ca as AddStringNumberOptions, bu as AddTempoOptions, bF as AddTextDirectionOptions, bG as AddTextOptions, b6 as AddTieOptions, b1 as AddVoiceOptions, bx as AddWedgeOptions, bl as AutoBeamOptions, bQ as BarStyle, c7 as BowingType, cg as BreathMarkValue, cj as CaesuraValue, bO as ChangeBarlineOptions, bg as ChangeClefOptions, aX as ChangeNoteDurationOptions, bW as ConvertToGraceOptions, br as CopyNotesMultiMeasureOptions, bo as CopyNotesOptions, bh as CreateTupletOptions, bq as CutNotesOptions, b3 as DuplicatePartOptions, b_ as HarmonyKind, bf as InsertClefChangeOptions, aU as InsertNoteOptions, cM as LocalValidateOptions, b0 as LowerAccidentalOptions, cL as MeasureValidationContext, be as ModifyDynamicsOptions, bw as ModifyTempoOptions, b5 as MoveNoteToStaffOptions, bs as MultiMeasureSelection, bn as NoteSelection, cc as OctaveShiftType, aT as OperationErrorCode, aS as OperationResult, bt as PasteNotesMultiMeasureOptions, bp as PasteNotesOptions, a$ as RaiseAccidentalOptions, bb as RemoveArticulationOptions, bk as RemoveBeamOptions, c9 as RemoveBowingOptions, ci as RemoveBreathMarkOptions, cl as RemoveCaesuraOptions, c3 as RemoveChordSymbolOptions, bd as RemoveDynamicsOptions, bN as RemoveEndingOptions, bA as RemoveFermataOptions, c6 as RemoveFingeringOptions, bV as RemoveGraceNoteOptions, c0 as RemoveHarmonyOptions, bY as RemoveLyricOptions, aV as RemoveNoteOptions, cf as RemoveOctaveShiftOptions, bC as RemoveOrnamentOptions, bE as RemovePedalOptions, bJ as RemoveRepeatBarlineOptions, bL as RemoveRepeatOptions, b9 as RemoveSlurOptions, cb as RemoveStringNumberOptions, bv as RemoveTempoOptions, b7 as RemoveTieOptions, bi as RemoveTupletOptions, by as RemoveWedgeOptions, bP as SetBarlineOptions, bm as SetBeamingOptions, aZ as SetNotePitchBySemitoneOptions, aY as SetNotePitchOptions, b4 as SetStavesOptions, a_ as ShiftNotePitchOptions, ce as StopOctaveShiftOptions, c4 as UpdateChordSymbolOptions, c1 as UpdateHarmonyOptions, bZ as UpdateLyricOptions, cH as ValidationError, cJ as ValidationErrorCode, cD as ValidationException, cK as ValidationLevel, cI as ValidationLocation, K as addArticulation, T as addBeam, aH as addBowing, aO as addBreathMark, aQ as addCaesura, b as addChord, j as addChordNote, p as addChordNoteChecked, aC as addChordSymbol, ao as addCoda, ap as addDaCapo, aq as addDalSegno, M as addDynamics, aj as addEnding, a6 as addFermata, ar as addFine, aF as addFingering, at as addGraceNote, az as addHarmony, aw as addLyric, g as addNote, n as addNoteChecked, aL as addOctaveShift, a8 as addOrnament, x as addPart, aa as addPedal, ae as addRehearsalMark, ah as addRepeat, af as addRepeatBarline, an as addSegno, I as addSlur, aJ as addStringNumber, a1 as addTempo, ad as addText, ac as addTextDirection, G as addTie, as as addToCoda, w as addVoice, a4 as addWedge, cG as assertMeasureValid, co as assertValid, W as autoBeam, al as changeBarline, Q as changeClef, C as changeKey, e as changeNoteDuration, D as changeTime, av as convertToGrace, Y as copyNotes, $ as copyNotesMultiMeasure, R as createTuplet, _ as cutNotes, F as deleteMeasure, h as deleteNote, o as deleteNoteChecked, z as duplicatePart, cC as formatLocation, cF as getMeasureContext, P as insertClefChange, E as insertMeasure, i as insertNote, cn as isValid, l as lowerAccidental, O as modifyDynamics, k as modifyNoteDuration, u as modifyNoteDurationChecked, m as modifyNotePitch, q as modifyNotePitchChecked, a3 as modifyTempo, B as moveNoteToStaff, Z as pasteNotes, a0 as pasteNotesMultiMeasure, f as raiseAccidental, L as removeArticulation, U as removeBeam, aI as removeBowing, aP as removeBreathMark, aR as removeCaesura, aD as removeChordSymbol, N as removeDynamics, ak as removeEnding, a7 as removeFermata, aG as removeFingering, au as removeGraceNote, aA as removeHarmony, ax as removeLyric, r as removeNote, aN as removeOctaveShift, a9 as removeOrnament, y as removePart, ab as removePedal, ai as removeRepeat, ag as removeRepeatBarline, J as removeSlur, aK as removeStringNumber, a2 as removeTempo, H as removeTie, S as removeTuplet, a5 as removeWedge, am as setBarline, X as setBeaming, s as setNotePitch, c as setNotePitchBySemitone, A as setStaves, d as shiftNotePitch, aM as stopOctaveShift, t as transpose, v as transposeChecked, aE as updateChordSymbol, aB as updateHarmony, ay as updateLyric, cm as validate, cr as validateBackupForward, ct as validateBeams, cp as validateDivisions, cq as validateMeasureDuration, cE as validateMeasureLocal, cw as validatePartReferences, cx as validatePartStructure, cu as validateSlurs, cB as validateSlursAcrossMeasures, cy as validateStaffStructure, cs as validateTies, cA as validateTiesAcrossMeasures, cv as validateTuplets, cz as validateVoiceStaff } from './index-Dy4LmZRQ.mjs';
1
+ import { S as Score, P as Pitch, M as Measure, D as DirectionType, a as DirectionEntry, N as NoteEntry, b as PartListEntry, c as PartInfo } from './types-BFmNsRNw.mjs';
2
+ export { A as Accidental, j as AccidentalInfo, O as AdjacentNotes, a4 as AssembledLyrics, B as BackupEntry, p as Barline, a5 as BarlineWithContext, a0 as BeamGroup, k as BeamInfo, s as Chord, C as Clef, aa as ClefChangeInfo, w as Credit, v as Defaults, Q as DirectionKind, z as DirectionWithContext, R as DynamicWithContext, m as DynamicsValue, a7 as EndingInfo, E as EntryWithContext, F as ForwardEntry, a2 as HarmonyWithContext, a8 as KeyChangeInfo, K as KeySignature, L as Lyric, a3 as LyricWithContext, g as MeasureAttributes, h as MeasureEntry, l as Notation, a1 as NotationType, t as NoteIteratorItem, i as NoteType, y as NoteWithContext, r as NoteWithPosition, Y as OctaveShiftWithContext, f as Part, e as PartGroup, W as PedalWithContext, H as PositionQueryOptions, u as Print, a6 as RepeatInfo, d as ScoreMetadata, _ as SlurSpan, q as StaffGroup, G as StaffRange, ab as StructuralChanges, U as TempoWithContext, T as TieInfo, Z as TiedNoteGroup, a9 as TimeChangeInfo, n as TimeSignature, o as Transpose, $ as TupletGroup, I as VerticalSlice, V as VoiceGroup, J as VoiceLine, x as VoiceToStaffMap, X as WedgeWithContext } from './types-BFmNsRNw.mjs';
3
+ import { V as ValidateOptions, a as ValidationResult } from './index-DFwIbWZu.mjs';
4
+ export { ba as AddArticulationOptions, bj as AddBeamOptions, c8 as AddBowingOptions, ch as AddBreathMarkOptions, ck as AddCaesuraOptions, aW as AddChordOptions, c2 as AddChordSymbolOptions, bS as AddCodaOptions, bc as AddDynamicsOptions, bM as AddEndingOptions, bz as AddFermataOptions, c5 as AddFingeringOptions, bU as AddGraceNoteOptions, b$ as AddHarmonyOptions, bX as AddLyricOptions, bT as AddNavigationOptions, cd as AddOctaveShiftOptions, bB as AddOrnamentOptions, b2 as AddPartOptions, bD as AddPedalOptions, bH as AddRehearsalMarkOptions, bI as AddRepeatBarlineOptions, bK as AddRepeatOptions, bR as AddSegnoOptions, b8 as AddSlurOptions, ca as AddStringNumberOptions, bu as AddTempoOptions, bF as AddTextDirectionOptions, bG as AddTextOptions, b6 as AddTieOptions, b1 as AddVoiceOptions, bx as AddWedgeOptions, bl as AutoBeamOptions, bQ as BarStyle, c7 as BowingType, cg as BreathMarkValue, cj as CaesuraValue, bO as ChangeBarlineOptions, bg as ChangeClefOptions, aX as ChangeNoteDurationOptions, bW as ConvertToGraceOptions, br as CopyNotesMultiMeasureOptions, bo as CopyNotesOptions, bh as CreateTupletOptions, bq as CutNotesOptions, b3 as DuplicatePartOptions, b_ as HarmonyKind, bf as InsertClefChangeOptions, aU as InsertNoteOptions, cM as LocalValidateOptions, b0 as LowerAccidentalOptions, cL as MeasureValidationContext, be as ModifyDynamicsOptions, bw as ModifyTempoOptions, b5 as MoveNoteToStaffOptions, bs as MultiMeasureSelection, bn as NoteSelection, cc as OctaveShiftType, aT as OperationErrorCode, aS as OperationResult, bt as PasteNotesMultiMeasureOptions, bp as PasteNotesOptions, a$ as RaiseAccidentalOptions, bb as RemoveArticulationOptions, bk as RemoveBeamOptions, c9 as RemoveBowingOptions, ci as RemoveBreathMarkOptions, cl as RemoveCaesuraOptions, c3 as RemoveChordSymbolOptions, bd as RemoveDynamicsOptions, bN as RemoveEndingOptions, bA as RemoveFermataOptions, c6 as RemoveFingeringOptions, bV as RemoveGraceNoteOptions, c0 as RemoveHarmonyOptions, bY as RemoveLyricOptions, aV as RemoveNoteOptions, cf as RemoveOctaveShiftOptions, bC as RemoveOrnamentOptions, bE as RemovePedalOptions, bJ as RemoveRepeatBarlineOptions, bL as RemoveRepeatOptions, b9 as RemoveSlurOptions, cb as RemoveStringNumberOptions, bv as RemoveTempoOptions, b7 as RemoveTieOptions, bi as RemoveTupletOptions, by as RemoveWedgeOptions, bP as SetBarlineOptions, bm as SetBeamingOptions, aZ as SetNotePitchBySemitoneOptions, aY as SetNotePitchOptions, b4 as SetStavesOptions, a_ as ShiftNotePitchOptions, ce as StopOctaveShiftOptions, c4 as UpdateChordSymbolOptions, c1 as UpdateHarmonyOptions, bZ as UpdateLyricOptions, cH as ValidationError, cJ as ValidationErrorCode, cD as ValidationException, cK as ValidationLevel, cI as ValidationLocation, K as addArticulation, T as addBeam, aH as addBowing, aO as addBreathMark, aQ as addCaesura, b as addChord, j as addChordNote, p as addChordNoteChecked, aC as addChordSymbol, ao as addCoda, ap as addDaCapo, aq as addDalSegno, M as addDynamics, aj as addEnding, a6 as addFermata, ar as addFine, aF as addFingering, at as addGraceNote, az as addHarmony, aw as addLyric, g as addNote, n as addNoteChecked, aL as addOctaveShift, a8 as addOrnament, x as addPart, aa as addPedal, ae as addRehearsalMark, ah as addRepeat, af as addRepeatBarline, an as addSegno, I as addSlur, aJ as addStringNumber, a1 as addTempo, ad as addText, ac as addTextDirection, G as addTie, as as addToCoda, w as addVoice, a4 as addWedge, cG as assertMeasureValid, co as assertValid, W as autoBeam, al as changeBarline, Q as changeClef, C as changeKey, e as changeNoteDuration, D as changeTime, av as convertToGrace, Y as copyNotes, $ as copyNotesMultiMeasure, R as createTuplet, _ as cutNotes, F as deleteMeasure, h as deleteNote, o as deleteNoteChecked, z as duplicatePart, cC as formatLocation, cF as getMeasureContext, P as insertClefChange, E as insertMeasure, i as insertNote, cn as isValid, l as lowerAccidental, O as modifyDynamics, k as modifyNoteDuration, u as modifyNoteDurationChecked, m as modifyNotePitch, q as modifyNotePitchChecked, a3 as modifyTempo, B as moveNoteToStaff, Z as pasteNotes, a0 as pasteNotesMultiMeasure, f as raiseAccidental, L as removeArticulation, U as removeBeam, aI as removeBowing, aP as removeBreathMark, aR as removeCaesura, aD as removeChordSymbol, N as removeDynamics, ak as removeEnding, a7 as removeFermata, aG as removeFingering, au as removeGraceNote, aA as removeHarmony, ax as removeLyric, r as removeNote, aN as removeOctaveShift, a9 as removeOrnament, y as removePart, ab as removePedal, ai as removeRepeat, ag as removeRepeatBarline, J as removeSlur, aK as removeStringNumber, a2 as removeTempo, H as removeTie, S as removeTuplet, a5 as removeWedge, am as setBarline, X as setBeaming, s as setNotePitch, c as setNotePitchBySemitone, A as setStaves, d as shiftNotePitch, aM as stopOctaveShift, t as transpose, v as transposeChecked, aE as updateChordSymbol, aB as updateHarmony, ay as updateLyric, cm as validate, cr as validateBackupForward, ct as validateBeams, cp as validateDivisions, cq as validateMeasureDuration, cE as validateMeasureLocal, cw as validatePartReferences, cx as validatePartStructure, cu as validateSlurs, cB as validateSlursAcrossMeasures, cy as validateStaffStructure, cs as validateTies, cA as validateTiesAcrossMeasures, cv as validateTuplets, cz as validateVoiceStaff } from './index-DFwIbWZu.mjs';
5
5
  export { FindNotesFilter, NormalizedPositionOptions, PitchRange, RoundtripMetrics, VoiceFilter, buildVoiceToStaffMap, buildVoiceToStaffMapForPart, countNotes, findBarlines, findDirectionsByType, findNotes, findNotesWithNotation, getAbsolutePosition, getAdjacentNotes, getAllNotes, getAttributesAtMeasure, getBeamGroups, getChordProgression, getChords, getClefChanges, getClefForStaff, getDirections, getDirectionsAtPosition, getDivisions, getDuration, getDynamics, getEffectiveStaff, getEndings, getEntriesAtPosition, getEntriesForStaff, getEntriesInRange, getHarmonies, getHarmonyAtPosition, getKeyChanges, getLyricText, getLyrics, getMeasure, getMeasureByIndex, getMeasureCount, getNextNote, getNormalizedDuration, getNormalizedPosition, getNotesAtPosition, getNotesForStaff, getNotesForVoice, getNotesInRange, getOctaveShifts, getPartById, getPartByIndex, getPartCount, getPartIds, getPartIndex, getPedalMarkings, getPrevNote, getRepeatStructure, getSlurSpans, getStaffRange, getStaveCount, getStaves, getStructuralChanges, getTempoMarkings, getTiedNoteGroups, getTimeChanges, getTupletGroups, getVerseCount, getVerticalSlice, getVoiceLine, getVoiceLineInRange, getVoices, getVoicesForStaff, getWedges, groupByStaff, groupByVoice, hasMultipleStaves, hasNotes, inferStaff, isRestMeasure, iterateEntries, iterateNotes, measureRoundtrip, scoresEqual, withAbsolutePositions } from './query/index.mjs';
6
6
 
7
7
  declare function parse(xmlString: string): Score;
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import { S as Score, P as Pitch, M as Measure, D as DirectionType, a as DirectionEntry, N as NoteEntry, b as PartListEntry, c as PartInfo } from './types-D0G3_ykl.js';
2
- export { A as Accidental, j as AccidentalInfo, O as AdjacentNotes, a4 as AssembledLyrics, B as BackupEntry, p as Barline, a5 as BarlineWithContext, a0 as BeamGroup, k as BeamInfo, s as Chord, C as Clef, aa as ClefChangeInfo, w as Credit, v as Defaults, Q as DirectionKind, z as DirectionWithContext, R as DynamicWithContext, m as DynamicsValue, a7 as EndingInfo, E as EntryWithContext, F as ForwardEntry, a2 as HarmonyWithContext, a8 as KeyChangeInfo, K as KeySignature, L as Lyric, a3 as LyricWithContext, g as MeasureAttributes, h as MeasureEntry, l as Notation, a1 as NotationType, t as NoteIteratorItem, i as NoteType, y as NoteWithContext, r as NoteWithPosition, Y as OctaveShiftWithContext, f as Part, e as PartGroup, W as PedalWithContext, H as PositionQueryOptions, u as Print, a6 as RepeatInfo, d as ScoreMetadata, _ as SlurSpan, q as StaffGroup, G as StaffRange, ab as StructuralChanges, U as TempoWithContext, T as TieInfo, Z as TiedNoteGroup, a9 as TimeChangeInfo, n as TimeSignature, o as Transpose, $ as TupletGroup, I as VerticalSlice, V as VoiceGroup, J as VoiceLine, x as VoiceToStaffMap, X as WedgeWithContext } from './types-D0G3_ykl.js';
3
- import { V as ValidateOptions, a as ValidationResult } from './index-C1gu_fLF.js';
4
- export { ba as AddArticulationOptions, bj as AddBeamOptions, c8 as AddBowingOptions, ch as AddBreathMarkOptions, ck as AddCaesuraOptions, aW as AddChordOptions, c2 as AddChordSymbolOptions, bS as AddCodaOptions, bc as AddDynamicsOptions, bM as AddEndingOptions, bz as AddFermataOptions, c5 as AddFingeringOptions, bU as AddGraceNoteOptions, b$ as AddHarmonyOptions, bX as AddLyricOptions, bT as AddNavigationOptions, cd as AddOctaveShiftOptions, bB as AddOrnamentOptions, b2 as AddPartOptions, bD as AddPedalOptions, bH as AddRehearsalMarkOptions, bI as AddRepeatBarlineOptions, bK as AddRepeatOptions, bR as AddSegnoOptions, b8 as AddSlurOptions, ca as AddStringNumberOptions, bu as AddTempoOptions, bF as AddTextDirectionOptions, bG as AddTextOptions, b6 as AddTieOptions, b1 as AddVoiceOptions, bx as AddWedgeOptions, bl as AutoBeamOptions, bQ as BarStyle, c7 as BowingType, cg as BreathMarkValue, cj as CaesuraValue, bO as ChangeBarlineOptions, bg as ChangeClefOptions, aX as ChangeNoteDurationOptions, bW as ConvertToGraceOptions, br as CopyNotesMultiMeasureOptions, bo as CopyNotesOptions, bh as CreateTupletOptions, bq as CutNotesOptions, b3 as DuplicatePartOptions, b_ as HarmonyKind, bf as InsertClefChangeOptions, aU as InsertNoteOptions, cM as LocalValidateOptions, b0 as LowerAccidentalOptions, cL as MeasureValidationContext, be as ModifyDynamicsOptions, bw as ModifyTempoOptions, b5 as MoveNoteToStaffOptions, bs as MultiMeasureSelection, bn as NoteSelection, cc as OctaveShiftType, aT as OperationErrorCode, aS as OperationResult, bt as PasteNotesMultiMeasureOptions, bp as PasteNotesOptions, a$ as RaiseAccidentalOptions, bb as RemoveArticulationOptions, bk as RemoveBeamOptions, c9 as RemoveBowingOptions, ci as RemoveBreathMarkOptions, cl as RemoveCaesuraOptions, c3 as RemoveChordSymbolOptions, bd as RemoveDynamicsOptions, bN as RemoveEndingOptions, bA as RemoveFermataOptions, c6 as RemoveFingeringOptions, bV as RemoveGraceNoteOptions, c0 as RemoveHarmonyOptions, bY as RemoveLyricOptions, aV as RemoveNoteOptions, cf as RemoveOctaveShiftOptions, bC as RemoveOrnamentOptions, bE as RemovePedalOptions, bJ as RemoveRepeatBarlineOptions, bL as RemoveRepeatOptions, b9 as RemoveSlurOptions, cb as RemoveStringNumberOptions, bv as RemoveTempoOptions, b7 as RemoveTieOptions, bi as RemoveTupletOptions, by as RemoveWedgeOptions, bP as SetBarlineOptions, bm as SetBeamingOptions, aZ as SetNotePitchBySemitoneOptions, aY as SetNotePitchOptions, b4 as SetStavesOptions, a_ as ShiftNotePitchOptions, ce as StopOctaveShiftOptions, c4 as UpdateChordSymbolOptions, c1 as UpdateHarmonyOptions, bZ as UpdateLyricOptions, cH as ValidationError, cJ as ValidationErrorCode, cD as ValidationException, cK as ValidationLevel, cI as ValidationLocation, K as addArticulation, T as addBeam, aH as addBowing, aO as addBreathMark, aQ as addCaesura, b as addChord, j as addChordNote, p as addChordNoteChecked, aC as addChordSymbol, ao as addCoda, ap as addDaCapo, aq as addDalSegno, M as addDynamics, aj as addEnding, a6 as addFermata, ar as addFine, aF as addFingering, at as addGraceNote, az as addHarmony, aw as addLyric, g as addNote, n as addNoteChecked, aL as addOctaveShift, a8 as addOrnament, x as addPart, aa as addPedal, ae as addRehearsalMark, ah as addRepeat, af as addRepeatBarline, an as addSegno, I as addSlur, aJ as addStringNumber, a1 as addTempo, ad as addText, ac as addTextDirection, G as addTie, as as addToCoda, w as addVoice, a4 as addWedge, cG as assertMeasureValid, co as assertValid, W as autoBeam, al as changeBarline, Q as changeClef, C as changeKey, e as changeNoteDuration, D as changeTime, av as convertToGrace, Y as copyNotes, $ as copyNotesMultiMeasure, R as createTuplet, _ as cutNotes, F as deleteMeasure, h as deleteNote, o as deleteNoteChecked, z as duplicatePart, cC as formatLocation, cF as getMeasureContext, P as insertClefChange, E as insertMeasure, i as insertNote, cn as isValid, l as lowerAccidental, O as modifyDynamics, k as modifyNoteDuration, u as modifyNoteDurationChecked, m as modifyNotePitch, q as modifyNotePitchChecked, a3 as modifyTempo, B as moveNoteToStaff, Z as pasteNotes, a0 as pasteNotesMultiMeasure, f as raiseAccidental, L as removeArticulation, U as removeBeam, aI as removeBowing, aP as removeBreathMark, aR as removeCaesura, aD as removeChordSymbol, N as removeDynamics, ak as removeEnding, a7 as removeFermata, aG as removeFingering, au as removeGraceNote, aA as removeHarmony, ax as removeLyric, r as removeNote, aN as removeOctaveShift, a9 as removeOrnament, y as removePart, ab as removePedal, ai as removeRepeat, ag as removeRepeatBarline, J as removeSlur, aK as removeStringNumber, a2 as removeTempo, H as removeTie, S as removeTuplet, a5 as removeWedge, am as setBarline, X as setBeaming, s as setNotePitch, c as setNotePitchBySemitone, A as setStaves, d as shiftNotePitch, aM as stopOctaveShift, t as transpose, v as transposeChecked, aE as updateChordSymbol, aB as updateHarmony, ay as updateLyric, cm as validate, cr as validateBackupForward, ct as validateBeams, cp as validateDivisions, cq as validateMeasureDuration, cE as validateMeasureLocal, cw as validatePartReferences, cx as validatePartStructure, cu as validateSlurs, cB as validateSlursAcrossMeasures, cy as validateStaffStructure, cs as validateTies, cA as validateTiesAcrossMeasures, cv as validateTuplets, cz as validateVoiceStaff } from './index-C1gu_fLF.js';
1
+ import { S as Score, P as Pitch, M as Measure, D as DirectionType, a as DirectionEntry, N as NoteEntry, b as PartListEntry, c as PartInfo } from './types-BFmNsRNw.js';
2
+ export { A as Accidental, j as AccidentalInfo, O as AdjacentNotes, a4 as AssembledLyrics, B as BackupEntry, p as Barline, a5 as BarlineWithContext, a0 as BeamGroup, k as BeamInfo, s as Chord, C as Clef, aa as ClefChangeInfo, w as Credit, v as Defaults, Q as DirectionKind, z as DirectionWithContext, R as DynamicWithContext, m as DynamicsValue, a7 as EndingInfo, E as EntryWithContext, F as ForwardEntry, a2 as HarmonyWithContext, a8 as KeyChangeInfo, K as KeySignature, L as Lyric, a3 as LyricWithContext, g as MeasureAttributes, h as MeasureEntry, l as Notation, a1 as NotationType, t as NoteIteratorItem, i as NoteType, y as NoteWithContext, r as NoteWithPosition, Y as OctaveShiftWithContext, f as Part, e as PartGroup, W as PedalWithContext, H as PositionQueryOptions, u as Print, a6 as RepeatInfo, d as ScoreMetadata, _ as SlurSpan, q as StaffGroup, G as StaffRange, ab as StructuralChanges, U as TempoWithContext, T as TieInfo, Z as TiedNoteGroup, a9 as TimeChangeInfo, n as TimeSignature, o as Transpose, $ as TupletGroup, I as VerticalSlice, V as VoiceGroup, J as VoiceLine, x as VoiceToStaffMap, X as WedgeWithContext } from './types-BFmNsRNw.js';
3
+ import { V as ValidateOptions, a as ValidationResult } from './index-BWaC45uP.js';
4
+ export { ba as AddArticulationOptions, bj as AddBeamOptions, c8 as AddBowingOptions, ch as AddBreathMarkOptions, ck as AddCaesuraOptions, aW as AddChordOptions, c2 as AddChordSymbolOptions, bS as AddCodaOptions, bc as AddDynamicsOptions, bM as AddEndingOptions, bz as AddFermataOptions, c5 as AddFingeringOptions, bU as AddGraceNoteOptions, b$ as AddHarmonyOptions, bX as AddLyricOptions, bT as AddNavigationOptions, cd as AddOctaveShiftOptions, bB as AddOrnamentOptions, b2 as AddPartOptions, bD as AddPedalOptions, bH as AddRehearsalMarkOptions, bI as AddRepeatBarlineOptions, bK as AddRepeatOptions, bR as AddSegnoOptions, b8 as AddSlurOptions, ca as AddStringNumberOptions, bu as AddTempoOptions, bF as AddTextDirectionOptions, bG as AddTextOptions, b6 as AddTieOptions, b1 as AddVoiceOptions, bx as AddWedgeOptions, bl as AutoBeamOptions, bQ as BarStyle, c7 as BowingType, cg as BreathMarkValue, cj as CaesuraValue, bO as ChangeBarlineOptions, bg as ChangeClefOptions, aX as ChangeNoteDurationOptions, bW as ConvertToGraceOptions, br as CopyNotesMultiMeasureOptions, bo as CopyNotesOptions, bh as CreateTupletOptions, bq as CutNotesOptions, b3 as DuplicatePartOptions, b_ as HarmonyKind, bf as InsertClefChangeOptions, aU as InsertNoteOptions, cM as LocalValidateOptions, b0 as LowerAccidentalOptions, cL as MeasureValidationContext, be as ModifyDynamicsOptions, bw as ModifyTempoOptions, b5 as MoveNoteToStaffOptions, bs as MultiMeasureSelection, bn as NoteSelection, cc as OctaveShiftType, aT as OperationErrorCode, aS as OperationResult, bt as PasteNotesMultiMeasureOptions, bp as PasteNotesOptions, a$ as RaiseAccidentalOptions, bb as RemoveArticulationOptions, bk as RemoveBeamOptions, c9 as RemoveBowingOptions, ci as RemoveBreathMarkOptions, cl as RemoveCaesuraOptions, c3 as RemoveChordSymbolOptions, bd as RemoveDynamicsOptions, bN as RemoveEndingOptions, bA as RemoveFermataOptions, c6 as RemoveFingeringOptions, bV as RemoveGraceNoteOptions, c0 as RemoveHarmonyOptions, bY as RemoveLyricOptions, aV as RemoveNoteOptions, cf as RemoveOctaveShiftOptions, bC as RemoveOrnamentOptions, bE as RemovePedalOptions, bJ as RemoveRepeatBarlineOptions, bL as RemoveRepeatOptions, b9 as RemoveSlurOptions, cb as RemoveStringNumberOptions, bv as RemoveTempoOptions, b7 as RemoveTieOptions, bi as RemoveTupletOptions, by as RemoveWedgeOptions, bP as SetBarlineOptions, bm as SetBeamingOptions, aZ as SetNotePitchBySemitoneOptions, aY as SetNotePitchOptions, b4 as SetStavesOptions, a_ as ShiftNotePitchOptions, ce as StopOctaveShiftOptions, c4 as UpdateChordSymbolOptions, c1 as UpdateHarmonyOptions, bZ as UpdateLyricOptions, cH as ValidationError, cJ as ValidationErrorCode, cD as ValidationException, cK as ValidationLevel, cI as ValidationLocation, K as addArticulation, T as addBeam, aH as addBowing, aO as addBreathMark, aQ as addCaesura, b as addChord, j as addChordNote, p as addChordNoteChecked, aC as addChordSymbol, ao as addCoda, ap as addDaCapo, aq as addDalSegno, M as addDynamics, aj as addEnding, a6 as addFermata, ar as addFine, aF as addFingering, at as addGraceNote, az as addHarmony, aw as addLyric, g as addNote, n as addNoteChecked, aL as addOctaveShift, a8 as addOrnament, x as addPart, aa as addPedal, ae as addRehearsalMark, ah as addRepeat, af as addRepeatBarline, an as addSegno, I as addSlur, aJ as addStringNumber, a1 as addTempo, ad as addText, ac as addTextDirection, G as addTie, as as addToCoda, w as addVoice, a4 as addWedge, cG as assertMeasureValid, co as assertValid, W as autoBeam, al as changeBarline, Q as changeClef, C as changeKey, e as changeNoteDuration, D as changeTime, av as convertToGrace, Y as copyNotes, $ as copyNotesMultiMeasure, R as createTuplet, _ as cutNotes, F as deleteMeasure, h as deleteNote, o as deleteNoteChecked, z as duplicatePart, cC as formatLocation, cF as getMeasureContext, P as insertClefChange, E as insertMeasure, i as insertNote, cn as isValid, l as lowerAccidental, O as modifyDynamics, k as modifyNoteDuration, u as modifyNoteDurationChecked, m as modifyNotePitch, q as modifyNotePitchChecked, a3 as modifyTempo, B as moveNoteToStaff, Z as pasteNotes, a0 as pasteNotesMultiMeasure, f as raiseAccidental, L as removeArticulation, U as removeBeam, aI as removeBowing, aP as removeBreathMark, aR as removeCaesura, aD as removeChordSymbol, N as removeDynamics, ak as removeEnding, a7 as removeFermata, aG as removeFingering, au as removeGraceNote, aA as removeHarmony, ax as removeLyric, r as removeNote, aN as removeOctaveShift, a9 as removeOrnament, y as removePart, ab as removePedal, ai as removeRepeat, ag as removeRepeatBarline, J as removeSlur, aK as removeStringNumber, a2 as removeTempo, H as removeTie, S as removeTuplet, a5 as removeWedge, am as setBarline, X as setBeaming, s as setNotePitch, c as setNotePitchBySemitone, A as setStaves, d as shiftNotePitch, aM as stopOctaveShift, t as transpose, v as transposeChecked, aE as updateChordSymbol, aB as updateHarmony, ay as updateLyric, cm as validate, cr as validateBackupForward, ct as validateBeams, cp as validateDivisions, cq as validateMeasureDuration, cE as validateMeasureLocal, cw as validatePartReferences, cx as validatePartStructure, cu as validateSlurs, cB as validateSlursAcrossMeasures, cy as validateStaffStructure, cs as validateTies, cA as validateTiesAcrossMeasures, cv as validateTuplets, cz as validateVoiceStaff } from './index-BWaC45uP.js';
5
5
  export { FindNotesFilter, NormalizedPositionOptions, PitchRange, RoundtripMetrics, VoiceFilter, buildVoiceToStaffMap, buildVoiceToStaffMapForPart, countNotes, findBarlines, findDirectionsByType, findNotes, findNotesWithNotation, getAbsolutePosition, getAdjacentNotes, getAllNotes, getAttributesAtMeasure, getBeamGroups, getChordProgression, getChords, getClefChanges, getClefForStaff, getDirections, getDirectionsAtPosition, getDivisions, getDuration, getDynamics, getEffectiveStaff, getEndings, getEntriesAtPosition, getEntriesForStaff, getEntriesInRange, getHarmonies, getHarmonyAtPosition, getKeyChanges, getLyricText, getLyrics, getMeasure, getMeasureByIndex, getMeasureCount, getNextNote, getNormalizedDuration, getNormalizedPosition, getNotesAtPosition, getNotesForStaff, getNotesForVoice, getNotesInRange, getOctaveShifts, getPartById, getPartByIndex, getPartCount, getPartIds, getPartIndex, getPedalMarkings, getPrevNote, getRepeatStructure, getSlurSpans, getStaffRange, getStaveCount, getStaves, getStructuralChanges, getTempoMarkings, getTiedNoteGroups, getTimeChanges, getTupletGroups, getVerseCount, getVerticalSlice, getVoiceLine, getVoiceLineInRange, getVoices, getVoicesForStaff, getWedges, groupByStaff, groupByVoice, hasMultipleStaves, hasNotes, inferStaff, isRestMeasure, iterateEntries, iterateNotes, measureRoundtrip, scoresEqual, withAbsolutePositions } from './query/index.js';
6
6
 
7
7
  declare function parse(xmlString: string): Score;
package/dist/index.js CHANGED
@@ -127,7 +127,7 @@
127
127
 
128
128
 
129
129
 
130
- var _chunkCANSNTYKjs = require('./chunk-CANSNTYK.js');
130
+ var _chunkLLFU3JZAjs = require('./chunk-LLFU3JZA.js');
131
131
 
132
132
 
133
133
 
@@ -210,7 +210,7 @@ var _chunkCANSNTYKjs = require('./chunk-CANSNTYK.js');
210
210
 
211
211
 
212
212
 
213
- var _chunkTIFUKSTHjs = require('./chunk-TIFUKSTH.js');
213
+ var _chunk24XBPMRJjs = require('./chunk-24XBPMRJ.js');
214
214
 
215
215
  // src/importers/musicxml.ts
216
216
  var _fastxmlparser = require('fast-xml-parser');
@@ -311,7 +311,7 @@ function parseScorePartwise(elements) {
311
311
  const defaults = parseDefaults(elements);
312
312
  const credits = parseCredits(elements);
313
313
  return {
314
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
314
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
315
315
  metadata,
316
316
  partList,
317
317
  parts,
@@ -561,7 +561,7 @@ function parseSystemLayout(elements) {
561
561
  }
562
562
  function parseCredits(elements) {
563
563
  const credits = collectElements(elements, "credit", (content, attrs) => {
564
- const credit = { _id: _chunkCANSNTYKjs.generateId.call(void 0, ) };
564
+ const credit = { _id: _chunkLLFU3JZAjs.generateId.call(void 0, ) };
565
565
  if (attrs["page"]) credit.page = parseInt(attrs["page"], 10);
566
566
  const types = collectElements(content, "credit-type", (c) => extractText(c));
567
567
  const words = collectElements(content, "credit-words", (c, a) => {
@@ -604,7 +604,7 @@ function parsePartList(elements) {
604
604
  const attrs = getAttributes(el);
605
605
  const content = el["score-part"];
606
606
  const partInfo = {
607
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
607
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
608
608
  type: "score-part",
609
609
  id: attrs["id"] || ""
610
610
  };
@@ -697,7 +697,7 @@ function parsePartList(elements) {
697
697
  const attrs = getAttributes(el);
698
698
  const content = el["part-group"];
699
699
  const group = {
700
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
700
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
701
701
  type: "part-group",
702
702
  groupType: attrs["type"] === "stop" ? "stop" : "start"
703
703
  };
@@ -733,7 +733,7 @@ function parseParts(elements) {
733
733
  const attrs = getAttributes(el);
734
734
  const content = el["part"];
735
735
  const part = {
736
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
736
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
737
737
  id: attrs["id"] || "",
738
738
  measures: []
739
739
  };
@@ -751,7 +751,7 @@ function parseParts(elements) {
751
751
  }
752
752
  function parseMeasure(elements, attrs) {
753
753
  const measure = {
754
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
754
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
755
755
  number: attrs["number"] || "0",
756
756
  // Keep as string per MusicXML spec (token type)
757
757
  entries: []
@@ -768,7 +768,7 @@ function parseMeasure(elements, attrs) {
768
768
  isFirstAttributes = false;
769
769
  } else {
770
770
  const attrEntry = {
771
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
771
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
772
772
  type: "attributes",
773
773
  attributes: parsedAttrs
774
774
  };
@@ -795,7 +795,7 @@ function parseMeasure(elements, attrs) {
795
795
  } else if (el["grouping"] !== void 0) {
796
796
  const grpAttrs = getAttributes(el);
797
797
  const grouping = {
798
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
798
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
799
799
  type: "grouping",
800
800
  groupingType: grpAttrs["type"] || "start"
801
801
  };
@@ -1011,12 +1011,12 @@ function parseTranspose(elements) {
1011
1011
  }
1012
1012
  function parseNote(elements, attrs) {
1013
1013
  const note = {
1014
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
1014
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
1015
1015
  type: "note",
1016
1016
  duration: getElementTextAsInt(elements, "duration", 0)
1017
1017
  };
1018
- const voiceValue = getElementTextAsInt(elements, "voice");
1019
- if (voiceValue !== void 0) {
1018
+ const voiceValue = getElementText(elements, "voice");
1019
+ if (voiceValue !== void 0 && voiceValue !== "") {
1020
1020
  note.voice = voiceValue;
1021
1021
  }
1022
1022
  if (attrs["default-x"]) note.defaultX = parseFloat(attrs["default-x"]);
@@ -1715,26 +1715,26 @@ function parseLyric(elements, attrs) {
1715
1715
  }
1716
1716
  function parseBackup(elements) {
1717
1717
  return {
1718
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
1718
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
1719
1719
  type: "backup",
1720
1720
  duration: parseInt(getElementText(elements, "duration") || "0", 10)
1721
1721
  };
1722
1722
  }
1723
1723
  function parseForward(elements) {
1724
1724
  const forward = {
1725
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
1725
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
1726
1726
  type: "forward",
1727
1727
  duration: parseInt(getElementText(elements, "duration") || "0", 10)
1728
1728
  };
1729
1729
  const voice = getElementText(elements, "voice");
1730
- if (voice) forward.voice = parseInt(voice, 10);
1730
+ if (voice) forward.voice = voice;
1731
1731
  const staff = getElementText(elements, "staff");
1732
1732
  if (staff) forward.staff = parseInt(staff, 10);
1733
1733
  return forward;
1734
1734
  }
1735
1735
  function parseDirection(elements, attrs) {
1736
1736
  const direction = {
1737
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
1737
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
1738
1738
  type: "direction",
1739
1739
  directionTypes: []
1740
1740
  };
@@ -1750,7 +1750,7 @@ function parseDirection(elements, attrs) {
1750
1750
  const staff = getElementText(elements, "staff");
1751
1751
  if (staff) direction.staff = parseInt(staff, 10);
1752
1752
  const voice = getElementText(elements, "voice");
1753
- if (voice) direction.voice = parseInt(voice, 10);
1753
+ if (voice) direction.voice = voice;
1754
1754
  parseFirstElement(elements, "offset", (c, a) => {
1755
1755
  const text = extractText(c);
1756
1756
  if (text) direction.offset = parseInt(text, 10);
@@ -2149,7 +2149,7 @@ function parseDirectionTypes(elements) {
2149
2149
  }
2150
2150
  function parseBarline(elements, attrs) {
2151
2151
  const location = attrs["location"] || "right";
2152
- const barline = { _id: _chunkCANSNTYKjs.generateId.call(void 0, ), location };
2152
+ const barline = { _id: _chunkLLFU3JZAjs.generateId.call(void 0, ), location };
2153
2153
  const barStyle = getElementText(elements, "bar-style");
2154
2154
  if (barStyle && isValidBarStyle(barStyle)) {
2155
2155
  barline.barStyle = barStyle;
@@ -2377,7 +2377,7 @@ function parseMeasureStyle(elements, attrs) {
2377
2377
  }
2378
2378
  function parseHarmony(elements, attrs) {
2379
2379
  const harmony = {
2380
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
2380
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
2381
2381
  type: "harmony",
2382
2382
  root: { rootStep: "C" },
2383
2383
  kind: "major"
@@ -2511,7 +2511,7 @@ function parseHarmony(elements, attrs) {
2511
2511
  }
2512
2512
  function parseFiguredBass(elements, attrs) {
2513
2513
  const fb = {
2514
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
2514
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
2515
2515
  type: "figured-bass",
2516
2516
  figures: []
2517
2517
  };
@@ -2558,7 +2558,7 @@ function parseFiguredBass(elements, attrs) {
2558
2558
  }
2559
2559
  function parseSound(elements, attrs) {
2560
2560
  const sound = {
2561
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
2561
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
2562
2562
  type: "sound"
2563
2563
  };
2564
2564
  if (attrs["tempo"]) sound.tempo = parseFloat(attrs["tempo"]);
@@ -3588,7 +3588,7 @@ function buildScore(header, voiceTokensList, voiceIds, headerFieldOrder, inlineV
3588
3588
  const headerVoice = _optionalChain([header, 'access', _2 => _2.voices, 'optionalAccess', _3 => _3.find, 'call', _4 => _4((v) => v.id === voiceId)]) || header.voices && header.voices[voiceIndex];
3589
3589
  const voiceName = headerVoice ? headerVoice.name || `Voice ${voiceIndex + 1}` : voiceTokensList.length > 1 ? `Voice ${voiceIndex + 1}` : "Music";
3590
3590
  partListEntries.push({
3591
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
3591
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
3592
3592
  type: "score-part",
3593
3593
  id: partId,
3594
3594
  name: voiceName
@@ -3596,7 +3596,7 @@ function buildScore(header, voiceTokensList, voiceIds, headerFieldOrder, inlineV
3596
3596
  const voiceClef = headerVoice ? abcClefToMusicXml(headerVoice.clef) : void 0;
3597
3597
  const buildResult = buildMeasures(tokens, unitNote, keySignature, timeSignature, measureDuration, voiceClef);
3598
3598
  parts.push({
3599
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
3599
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
3600
3600
  id: partId,
3601
3601
  measures: buildResult.measures
3602
3602
  });
@@ -3649,7 +3649,7 @@ function buildScore(header, voiceTokensList, voiceIds, headerFieldOrder, inlineV
3649
3649
  encoding.encoder = encoderValues;
3650
3650
  }
3651
3651
  return {
3652
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
3652
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
3653
3653
  metadata: {
3654
3654
  movementTitle: header.title,
3655
3655
  creators: creators.length > 0 ? creators : void 0,
@@ -3675,7 +3675,7 @@ function parseTempoToDirection(tempoStr) {
3675
3675
  if (found) beatUnit = found;
3676
3676
  }
3677
3677
  return {
3678
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
3678
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
3679
3679
  type: "direction",
3680
3680
  directionTypes: [{ kind: "metronome", beatUnit, perMinute }],
3681
3681
  placement: "above",
@@ -3731,7 +3731,7 @@ function buildMeasures(tokens, unitNote, keySignature, timeSignature, measureDur
3731
3731
  if (dynDir) currentEntries.push(dynDir);
3732
3732
  } else if (item.kind === "decoration") {
3733
3733
  const decoDir = {
3734
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
3734
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
3735
3735
  type: "direction",
3736
3736
  directionTypes: [{ kind: "words", text: item.value }]
3737
3737
  };
@@ -3742,7 +3742,7 @@ function buildMeasures(tokens, unitNote, keySignature, timeSignature, measureDur
3742
3742
  }
3743
3743
  function finalizeMeasure(endBarType) {
3744
3744
  const measure = {
3745
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
3745
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
3746
3746
  number: String(measureNumber),
3747
3747
  entries: currentEntries
3748
3748
  };
@@ -3957,7 +3957,7 @@ function buildMeasures(tokens, unitNote, keySignature, timeSignature, measureDur
3957
3957
  const rightBl = _optionalChain([lastMeasure, 'access', _9 => _9.barlines, 'optionalAccess', _10 => _10.find, 'call', _11 => _11((b) => b.location === "right")]);
3958
3958
  if (rightBl) {
3959
3959
  const endingBarline2 = {
3960
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
3960
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
3961
3961
  location: "left",
3962
3962
  barStyle: rightBl.barStyle,
3963
3963
  repeat: rightBl.repeat,
@@ -3969,7 +3969,7 @@ function buildMeasures(tokens, unitNote, keySignature, timeSignature, measureDur
3969
3969
  }
3970
3970
  }
3971
3971
  const endingBarline = {
3972
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
3972
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
3973
3973
  location: "left",
3974
3974
  ending: {
3975
3975
  number: token.value,
@@ -4069,7 +4069,7 @@ function buildMeasures(tokens, unitNote, keySignature, timeSignature, measureDur
4069
4069
  case "overlay": {
4070
4070
  if (currentPosition > 0) {
4071
4071
  const backupEntry = {
4072
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
4072
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
4073
4073
  type: "backup",
4074
4074
  duration: currentPosition
4075
4075
  };
@@ -4083,7 +4083,7 @@ function buildMeasures(tokens, unitNote, keySignature, timeSignature, measureDur
4083
4083
  if (lMatch) {
4084
4084
  currentUnitNote = { num: parseInt(lMatch[1], 10), den: parseInt(lMatch[2], 10) };
4085
4085
  const inlineEntry = {
4086
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
4086
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
4087
4087
  type: "direction",
4088
4088
  directionTypes: [{ kind: "words", text: `[L:${lMatch[1]}/${lMatch[2]}]` }]
4089
4089
  };
@@ -4102,7 +4102,7 @@ function buildMeasures(tokens, unitNote, keySignature, timeSignature, measureDur
4102
4102
  if (currentEntries.length > 0) {
4103
4103
  const breakText = token.value === "\\\n" ? "__abc_line_cont__" : "__abc_line_break__";
4104
4104
  const lineBreakDir = {
4105
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
4105
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
4106
4106
  type: "direction",
4107
4107
  directionTypes: [{ kind: "words", text: breakText }]
4108
4108
  };
@@ -4206,11 +4206,11 @@ function createNoteEntry(token, unitNote, _hasTieStop, isGrace, tupletState) {
4206
4206
  }
4207
4207
  const { noteType, dots } = durationToNoteType(isGrace ? lengthToDuration(num, den, unitNote) : duration);
4208
4208
  const entry = {
4209
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
4209
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
4210
4210
  type: "note",
4211
4211
  pitch: token.pitch,
4212
4212
  duration,
4213
- voice: 1,
4213
+ voice: "1",
4214
4214
  noteType,
4215
4215
  dots: dots > 0 ? dots : void 0
4216
4216
  };
@@ -4260,11 +4260,11 @@ function createRestEntry(token, unitNote, tupletState, measureDuration) {
4260
4260
  }
4261
4261
  const { noteType, dots } = durationToNoteType(duration);
4262
4262
  const entry = {
4263
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
4263
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
4264
4264
  type: "note",
4265
4265
  rest: isWholeMeasure ? { measure: true } : {},
4266
4266
  duration,
4267
- voice: 1,
4267
+ voice: "1",
4268
4268
  noteType,
4269
4269
  dots: dots > 0 ? dots : void 0
4270
4270
  };
@@ -4275,7 +4275,7 @@ function createRestEntry(token, unitNote, tupletState, measureDuration) {
4275
4275
  }
4276
4276
  function createBarline(barType, location, endingNumber) {
4277
4277
  const barline = {
4278
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
4278
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
4279
4279
  location
4280
4280
  };
4281
4281
  switch (barType) {
@@ -4366,7 +4366,7 @@ function createHarmonyEntry(chordStr) {
4366
4366
  break;
4367
4367
  }
4368
4368
  const entry = {
4369
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
4369
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
4370
4370
  type: "harmony",
4371
4371
  root: { rootStep, rootAlter: rootAlter !== void 0 ? rootAlter : void 0 },
4372
4372
  kind
@@ -4385,7 +4385,7 @@ function createHarmonyEntry(chordStr) {
4385
4385
  function createDynamicsDirection(dynamic) {
4386
4386
  if (!DYNAMICS_VALUES.has(dynamic)) return null;
4387
4387
  return {
4388
- _id: _chunkCANSNTYKjs.generateId.call(void 0, ),
4388
+ _id: _chunkLLFU3JZAjs.generateId.call(void 0, ),
4389
4389
  type: "direction",
4390
4390
  directionTypes: [{
4391
4391
  kind: "dynamics",
@@ -4414,13 +4414,13 @@ function serialize(score, options = {}) {
4414
4414
  const version = options.version || score.version || "4.0";
4415
4415
  const indent = _nullishCoalesce(options.indent, () => ( " "));
4416
4416
  if (options.validate) {
4417
- const result = _chunkCANSNTYKjs.validate.call(void 0, score, options.validateOptions);
4417
+ const result = _chunkLLFU3JZAjs.validate.call(void 0, score, options.validateOptions);
4418
4418
  if (options.onValidation) {
4419
4419
  options.onValidation(result);
4420
4420
  }
4421
4421
  if (!result.valid && options.throwOnValidationError) {
4422
4422
  const errorMessages = result.errors.map((e) => `[${e.code}] ${e.message}`).join("\n");
4423
- throw new (0, _chunkCANSNTYKjs.ValidationException)(result.errors, `Score validation failed:
4423
+ throw new (0, _chunkLLFU3JZAjs.ValidationException)(result.errors, `Score validation failed:
4424
4424
  ${errorMessages}`);
4425
4425
  }
4426
4426
  }
@@ -8090,4 +8090,4 @@ async function serializeToFile(score, filePath, options = {}) {
8090
8090
 
8091
8091
 
8092
8092
 
8093
- exports.STEPS = _chunkTIFUKSTHjs.STEPS; exports.STEP_SEMITONES = _chunkTIFUKSTHjs.STEP_SEMITONES; exports.ValidationException = _chunkCANSNTYKjs.ValidationException; exports.addArticulation = _chunkCANSNTYKjs.addArticulation; exports.addBeam = _chunkCANSNTYKjs.addBeam; exports.addBowing = _chunkCANSNTYKjs.addBowing; exports.addBreathMark = _chunkCANSNTYKjs.addBreathMark; exports.addCaesura = _chunkCANSNTYKjs.addCaesura; exports.addChord = _chunkCANSNTYKjs.addChord; exports.addChordNote = _chunkCANSNTYKjs.addChordNote; exports.addChordNoteChecked = _chunkCANSNTYKjs.addChordNoteChecked; exports.addChordSymbol = _chunkCANSNTYKjs.addChordSymbol; exports.addCoda = _chunkCANSNTYKjs.addCoda; exports.addDaCapo = _chunkCANSNTYKjs.addDaCapo; exports.addDalSegno = _chunkCANSNTYKjs.addDalSegno; exports.addDynamics = _chunkCANSNTYKjs.addDynamics; exports.addEnding = _chunkCANSNTYKjs.addEnding; exports.addFermata = _chunkCANSNTYKjs.addFermata; exports.addFine = _chunkCANSNTYKjs.addFine; exports.addFingering = _chunkCANSNTYKjs.addFingering; exports.addGraceNote = _chunkCANSNTYKjs.addGraceNote; exports.addHarmony = _chunkCANSNTYKjs.addHarmony; exports.addLyric = _chunkCANSNTYKjs.addLyric; exports.addNote = _chunkCANSNTYKjs.addNote; exports.addNoteChecked = _chunkCANSNTYKjs.addNoteChecked; exports.addOctaveShift = _chunkCANSNTYKjs.addOctaveShift; exports.addOrnament = _chunkCANSNTYKjs.addOrnament; exports.addPart = _chunkCANSNTYKjs.addPart; exports.addPedal = _chunkCANSNTYKjs.addPedal; exports.addRehearsalMark = _chunkCANSNTYKjs.addRehearsalMark; exports.addRepeat = _chunkCANSNTYKjs.addRepeat; exports.addRepeatBarline = _chunkCANSNTYKjs.addRepeatBarline; exports.addSegno = _chunkCANSNTYKjs.addSegno; exports.addSlur = _chunkCANSNTYKjs.addSlur; exports.addStringNumber = _chunkCANSNTYKjs.addStringNumber; exports.addTempo = _chunkCANSNTYKjs.addTempo; exports.addText = _chunkCANSNTYKjs.addText; exports.addTextDirection = _chunkCANSNTYKjs.addTextDirection; exports.addTie = _chunkCANSNTYKjs.addTie; exports.addToCoda = _chunkCANSNTYKjs.addToCoda; exports.addVoice = _chunkCANSNTYKjs.addVoice; exports.addWedge = _chunkCANSNTYKjs.addWedge; exports.assertMeasureValid = _chunkCANSNTYKjs.assertMeasureValid; exports.assertValid = _chunkCANSNTYKjs.assertValid; exports.autoBeam = _chunkCANSNTYKjs.autoBeam; exports.buildVoiceToStaffMap = _chunkTIFUKSTHjs.buildVoiceToStaffMap; exports.buildVoiceToStaffMapForPart = _chunkTIFUKSTHjs.buildVoiceToStaffMapForPart; exports.changeBarline = _chunkCANSNTYKjs.changeBarline; exports.changeClef = _chunkCANSNTYKjs.changeClef; exports.changeKey = _chunkCANSNTYKjs.changeKey; exports.changeNoteDuration = _chunkCANSNTYKjs.changeNoteDuration; exports.changeTime = _chunkCANSNTYKjs.changeTime; exports.convertToGrace = _chunkCANSNTYKjs.convertToGrace; exports.copyNotes = _chunkCANSNTYKjs.copyNotes; exports.copyNotesMultiMeasure = _chunkCANSNTYKjs.copyNotesMultiMeasure; exports.countNotes = _chunkTIFUKSTHjs.countNotes; exports.createTuplet = _chunkCANSNTYKjs.createTuplet; exports.cutNotes = _chunkCANSNTYKjs.cutNotes; exports.decodeBuffer = decodeBuffer; exports.deleteMeasure = _chunkCANSNTYKjs.deleteMeasure; exports.deleteNote = _chunkCANSNTYKjs.deleteNote; exports.deleteNoteChecked = _chunkCANSNTYKjs.deleteNoteChecked; exports.duplicatePart = _chunkCANSNTYKjs.duplicatePart; exports.exportMidi = exportMidi; exports.findBarlines = _chunkTIFUKSTHjs.findBarlines; exports.findDirectionsByType = _chunkTIFUKSTHjs.findDirectionsByType; exports.findNotes = _chunkTIFUKSTHjs.findNotes; exports.findNotesWithNotation = _chunkTIFUKSTHjs.findNotesWithNotation; exports.formatLocation = _chunkCANSNTYKjs.formatLocation; exports.generateId = _chunkCANSNTYKjs.generateId; exports.getAbsolutePosition = _chunkTIFUKSTHjs.getAbsolutePosition; exports.getAdjacentNotes = _chunkTIFUKSTHjs.getAdjacentNotes; exports.getAllNotes = _chunkTIFUKSTHjs.getAllNotes; exports.getAllPartInfos = getAllPartInfos; exports.getAttributesAtMeasure = _chunkTIFUKSTHjs.getAttributesAtMeasure; exports.getBeamGroups = _chunkTIFUKSTHjs.getBeamGroups; exports.getChordProgression = _chunkTIFUKSTHjs.getChordProgression; exports.getChords = _chunkTIFUKSTHjs.getChords; exports.getClefChanges = _chunkTIFUKSTHjs.getClefChanges; exports.getClefForStaff = _chunkTIFUKSTHjs.getClefForStaff; exports.getDirectionOfKind = getDirectionOfKind; exports.getDirections = _chunkTIFUKSTHjs.getDirections; exports.getDirectionsAtPosition = _chunkTIFUKSTHjs.getDirectionsAtPosition; exports.getDirectionsOfKind = getDirectionsOfKind; exports.getDivisions = _chunkTIFUKSTHjs.getDivisions; exports.getDuration = _chunkTIFUKSTHjs.getDuration; exports.getDynamics = _chunkTIFUKSTHjs.getDynamics; exports.getEffectiveStaff = _chunkTIFUKSTHjs.getEffectiveStaff; exports.getEndings = _chunkTIFUKSTHjs.getEndings; exports.getEntriesAtPosition = _chunkTIFUKSTHjs.getEntriesAtPosition; exports.getEntriesForStaff = _chunkTIFUKSTHjs.getEntriesForStaff; exports.getEntriesInRange = _chunkTIFUKSTHjs.getEntriesInRange; exports.getHarmonies = _chunkTIFUKSTHjs.getHarmonies; exports.getHarmonyAtPosition = _chunkTIFUKSTHjs.getHarmonyAtPosition; exports.getKeyChanges = _chunkTIFUKSTHjs.getKeyChanges; exports.getLyricText = _chunkTIFUKSTHjs.getLyricText; exports.getLyrics = _chunkTIFUKSTHjs.getLyrics; exports.getMeasure = _chunkTIFUKSTHjs.getMeasure; exports.getMeasureByIndex = _chunkTIFUKSTHjs.getMeasureByIndex; exports.getMeasureContext = _chunkCANSNTYKjs.getMeasureContext; exports.getMeasureCount = _chunkTIFUKSTHjs.getMeasureCount; exports.getMeasureEndPosition = _chunkTIFUKSTHjs.getMeasureEndPosition; exports.getNextNote = _chunkTIFUKSTHjs.getNextNote; exports.getNormalizedDuration = _chunkTIFUKSTHjs.getNormalizedDuration; exports.getNormalizedPosition = _chunkTIFUKSTHjs.getNormalizedPosition; exports.getNotesAtPosition = _chunkTIFUKSTHjs.getNotesAtPosition; exports.getNotesForStaff = _chunkTIFUKSTHjs.getNotesForStaff; exports.getNotesForVoice = _chunkTIFUKSTHjs.getNotesForVoice; exports.getNotesInRange = _chunkTIFUKSTHjs.getNotesInRange; exports.getOctaveShifts = _chunkTIFUKSTHjs.getOctaveShifts; exports.getPartAbbreviation = getPartAbbreviation; exports.getPartById = _chunkTIFUKSTHjs.getPartById; exports.getPartByIndex = _chunkTIFUKSTHjs.getPartByIndex; exports.getPartCount = _chunkTIFUKSTHjs.getPartCount; exports.getPartIds = _chunkTIFUKSTHjs.getPartIds; exports.getPartIndex = _chunkTIFUKSTHjs.getPartIndex; exports.getPartInfo = getPartInfo; exports.getPartName = getPartName; exports.getPartNameMap = getPartNameMap; exports.getPedalMarkings = _chunkTIFUKSTHjs.getPedalMarkings; exports.getPrevNote = _chunkTIFUKSTHjs.getPrevNote; exports.getRepeatStructure = _chunkTIFUKSTHjs.getRepeatStructure; exports.getSlurSpans = _chunkTIFUKSTHjs.getSlurSpans; exports.getSoundDamperPedal = getSoundDamperPedal; exports.getSoundDynamics = getSoundDynamics; exports.getSoundSoftPedal = getSoundSoftPedal; exports.getSoundSostenutoPedal = getSoundSostenutoPedal; exports.getSoundTempo = getSoundTempo; exports.getStaffRange = _chunkTIFUKSTHjs.getStaffRange; exports.getStaveCount = _chunkTIFUKSTHjs.getStaveCount; exports.getStaves = _chunkTIFUKSTHjs.getStaves; exports.getStructuralChanges = _chunkTIFUKSTHjs.getStructuralChanges; exports.getTempoMarkings = _chunkTIFUKSTHjs.getTempoMarkings; exports.getTiedNoteGroups = _chunkTIFUKSTHjs.getTiedNoteGroups; exports.getTimeChanges = _chunkTIFUKSTHjs.getTimeChanges; exports.getTupletGroups = _chunkTIFUKSTHjs.getTupletGroups; exports.getVerseCount = _chunkTIFUKSTHjs.getVerseCount; exports.getVerticalSlice = _chunkTIFUKSTHjs.getVerticalSlice; exports.getVoiceLine = _chunkTIFUKSTHjs.getVoiceLine; exports.getVoiceLineInRange = _chunkTIFUKSTHjs.getVoiceLineInRange; exports.getVoices = _chunkTIFUKSTHjs.getVoices; exports.getVoicesForStaff = _chunkTIFUKSTHjs.getVoicesForStaff; exports.getWedges = _chunkTIFUKSTHjs.getWedges; exports.groupByStaff = _chunkTIFUKSTHjs.groupByStaff; exports.groupByVoice = _chunkTIFUKSTHjs.groupByVoice; exports.hasBeam = hasBeam; exports.hasDirectionOfKind = hasDirectionOfKind; exports.hasLyrics = hasLyrics; exports.hasMultipleStaves = _chunkTIFUKSTHjs.hasMultipleStaves; exports.hasNotations = hasNotations; exports.hasNotes = _chunkTIFUKSTHjs.hasNotes; exports.hasTie = hasTie; exports.hasTieStart = hasTieStart; exports.hasTieStop = hasTieStop; exports.hasTuplet = hasTuplet; exports.inferStaff = _chunkTIFUKSTHjs.inferStaff; exports.insertClefChange = _chunkCANSNTYKjs.insertClefChange; exports.insertMeasure = _chunkCANSNTYKjs.insertMeasure; exports.insertNote = _chunkCANSNTYKjs.insertNote; exports.isChordNote = isChordNote; exports.isCompressed = isCompressed; exports.isCueNote = isCueNote; exports.isGraceNote = isGraceNote; exports.isPartInfo = isPartInfo; exports.isPitchedNote = isPitchedNote; exports.isRest = isRest; exports.isRestMeasure = _chunkTIFUKSTHjs.isRestMeasure; exports.isUnpitchedNote = isUnpitchedNote; exports.isValid = _chunkCANSNTYKjs.isValid; exports.iterateEntries = _chunkTIFUKSTHjs.iterateEntries; exports.iterateNotes = _chunkTIFUKSTHjs.iterateNotes; exports.lowerAccidental = _chunkCANSNTYKjs.lowerAccidental; exports.measureRoundtrip = _chunkTIFUKSTHjs.measureRoundtrip; exports.modifyDynamics = _chunkCANSNTYKjs.modifyDynamics; exports.modifyNoteDuration = _chunkCANSNTYKjs.modifyNoteDuration; exports.modifyNoteDurationChecked = _chunkCANSNTYKjs.modifyNoteDurationChecked; exports.modifyNotePitch = _chunkCANSNTYKjs.modifyNotePitch; exports.modifyNotePitchChecked = _chunkCANSNTYKjs.modifyNotePitchChecked; exports.modifyTempo = _chunkCANSNTYKjs.modifyTempo; exports.moveNoteToStaff = _chunkCANSNTYKjs.moveNoteToStaff; exports.parse = parse; exports.parseAbc = parseAbc; exports.parseAuto = parseAuto; exports.parseCompressed = parseCompressed; exports.parseFile = parseFile; exports.pasteNotes = _chunkCANSNTYKjs.pasteNotes; exports.pasteNotesMultiMeasure = _chunkCANSNTYKjs.pasteNotesMultiMeasure; exports.pitchToSemitone = _chunkTIFUKSTHjs.pitchToSemitone; exports.raiseAccidental = _chunkCANSNTYKjs.raiseAccidental; exports.removeArticulation = _chunkCANSNTYKjs.removeArticulation; exports.removeBeam = _chunkCANSNTYKjs.removeBeam; exports.removeBowing = _chunkCANSNTYKjs.removeBowing; exports.removeBreathMark = _chunkCANSNTYKjs.removeBreathMark; exports.removeCaesura = _chunkCANSNTYKjs.removeCaesura; exports.removeChordSymbol = _chunkCANSNTYKjs.removeChordSymbol; exports.removeDynamics = _chunkCANSNTYKjs.removeDynamics; exports.removeEnding = _chunkCANSNTYKjs.removeEnding; exports.removeFermata = _chunkCANSNTYKjs.removeFermata; exports.removeFingering = _chunkCANSNTYKjs.removeFingering; exports.removeGraceNote = _chunkCANSNTYKjs.removeGraceNote; exports.removeHarmony = _chunkCANSNTYKjs.removeHarmony; exports.removeLyric = _chunkCANSNTYKjs.removeLyric; exports.removeNote = _chunkCANSNTYKjs.removeNote; exports.removeOctaveShift = _chunkCANSNTYKjs.removeOctaveShift; exports.removeOrnament = _chunkCANSNTYKjs.removeOrnament; exports.removePart = _chunkCANSNTYKjs.removePart; exports.removePedal = _chunkCANSNTYKjs.removePedal; exports.removeRepeat = _chunkCANSNTYKjs.removeRepeat; exports.removeRepeatBarline = _chunkCANSNTYKjs.removeRepeatBarline; exports.removeSlur = _chunkCANSNTYKjs.removeSlur; exports.removeStringNumber = _chunkCANSNTYKjs.removeStringNumber; exports.removeTempo = _chunkCANSNTYKjs.removeTempo; exports.removeTie = _chunkCANSNTYKjs.removeTie; exports.removeTuplet = _chunkCANSNTYKjs.removeTuplet; exports.removeWedge = _chunkCANSNTYKjs.removeWedge; exports.scoresEqual = _chunkTIFUKSTHjs.scoresEqual; exports.serialize = serialize; exports.serializeAbc = serializeAbc; exports.serializeCompressed = serializeCompressed; exports.serializeToFile = serializeToFile; exports.setBarline = _chunkCANSNTYKjs.setBarline; exports.setBeaming = _chunkCANSNTYKjs.setBeaming; exports.setNotePitch = _chunkCANSNTYKjs.setNotePitch; exports.setNotePitchBySemitone = _chunkCANSNTYKjs.setNotePitchBySemitone; exports.setStaves = _chunkCANSNTYKjs.setStaves; exports.shiftNotePitch = _chunkCANSNTYKjs.shiftNotePitch; exports.stopOctaveShift = _chunkCANSNTYKjs.stopOctaveShift; exports.transpose = _chunkCANSNTYKjs.transpose; exports.transposeChecked = _chunkCANSNTYKjs.transposeChecked; exports.updateChordSymbol = _chunkCANSNTYKjs.updateChordSymbol; exports.updateHarmony = _chunkCANSNTYKjs.updateHarmony; exports.updateLyric = _chunkCANSNTYKjs.updateLyric; exports.validate = _chunkCANSNTYKjs.validate; exports.validateBackupForward = _chunkCANSNTYKjs.validateBackupForward; exports.validateBeams = _chunkCANSNTYKjs.validateBeams; exports.validateDivisions = _chunkCANSNTYKjs.validateDivisions; exports.validateMeasureDuration = _chunkCANSNTYKjs.validateMeasureDuration; exports.validateMeasureLocal = _chunkCANSNTYKjs.validateMeasureLocal; exports.validatePartReferences = _chunkCANSNTYKjs.validatePartReferences; exports.validatePartStructure = _chunkCANSNTYKjs.validatePartStructure; exports.validateSlurs = _chunkCANSNTYKjs.validateSlurs; exports.validateSlursAcrossMeasures = _chunkCANSNTYKjs.validateSlursAcrossMeasures; exports.validateStaffStructure = _chunkCANSNTYKjs.validateStaffStructure; exports.validateTies = _chunkCANSNTYKjs.validateTies; exports.validateTiesAcrossMeasures = _chunkCANSNTYKjs.validateTiesAcrossMeasures; exports.validateTuplets = _chunkCANSNTYKjs.validateTuplets; exports.validateVoiceStaff = _chunkCANSNTYKjs.validateVoiceStaff; exports.withAbsolutePositions = _chunkTIFUKSTHjs.withAbsolutePositions;
8093
+ exports.STEPS = _chunk24XBPMRJjs.STEPS; exports.STEP_SEMITONES = _chunk24XBPMRJjs.STEP_SEMITONES; exports.ValidationException = _chunkLLFU3JZAjs.ValidationException; exports.addArticulation = _chunkLLFU3JZAjs.addArticulation; exports.addBeam = _chunkLLFU3JZAjs.addBeam; exports.addBowing = _chunkLLFU3JZAjs.addBowing; exports.addBreathMark = _chunkLLFU3JZAjs.addBreathMark; exports.addCaesura = _chunkLLFU3JZAjs.addCaesura; exports.addChord = _chunkLLFU3JZAjs.addChord; exports.addChordNote = _chunkLLFU3JZAjs.addChordNote; exports.addChordNoteChecked = _chunkLLFU3JZAjs.addChordNoteChecked; exports.addChordSymbol = _chunkLLFU3JZAjs.addChordSymbol; exports.addCoda = _chunkLLFU3JZAjs.addCoda; exports.addDaCapo = _chunkLLFU3JZAjs.addDaCapo; exports.addDalSegno = _chunkLLFU3JZAjs.addDalSegno; exports.addDynamics = _chunkLLFU3JZAjs.addDynamics; exports.addEnding = _chunkLLFU3JZAjs.addEnding; exports.addFermata = _chunkLLFU3JZAjs.addFermata; exports.addFine = _chunkLLFU3JZAjs.addFine; exports.addFingering = _chunkLLFU3JZAjs.addFingering; exports.addGraceNote = _chunkLLFU3JZAjs.addGraceNote; exports.addHarmony = _chunkLLFU3JZAjs.addHarmony; exports.addLyric = _chunkLLFU3JZAjs.addLyric; exports.addNote = _chunkLLFU3JZAjs.addNote; exports.addNoteChecked = _chunkLLFU3JZAjs.addNoteChecked; exports.addOctaveShift = _chunkLLFU3JZAjs.addOctaveShift; exports.addOrnament = _chunkLLFU3JZAjs.addOrnament; exports.addPart = _chunkLLFU3JZAjs.addPart; exports.addPedal = _chunkLLFU3JZAjs.addPedal; exports.addRehearsalMark = _chunkLLFU3JZAjs.addRehearsalMark; exports.addRepeat = _chunkLLFU3JZAjs.addRepeat; exports.addRepeatBarline = _chunkLLFU3JZAjs.addRepeatBarline; exports.addSegno = _chunkLLFU3JZAjs.addSegno; exports.addSlur = _chunkLLFU3JZAjs.addSlur; exports.addStringNumber = _chunkLLFU3JZAjs.addStringNumber; exports.addTempo = _chunkLLFU3JZAjs.addTempo; exports.addText = _chunkLLFU3JZAjs.addText; exports.addTextDirection = _chunkLLFU3JZAjs.addTextDirection; exports.addTie = _chunkLLFU3JZAjs.addTie; exports.addToCoda = _chunkLLFU3JZAjs.addToCoda; exports.addVoice = _chunkLLFU3JZAjs.addVoice; exports.addWedge = _chunkLLFU3JZAjs.addWedge; exports.assertMeasureValid = _chunkLLFU3JZAjs.assertMeasureValid; exports.assertValid = _chunkLLFU3JZAjs.assertValid; exports.autoBeam = _chunkLLFU3JZAjs.autoBeam; exports.buildVoiceToStaffMap = _chunk24XBPMRJjs.buildVoiceToStaffMap; exports.buildVoiceToStaffMapForPart = _chunk24XBPMRJjs.buildVoiceToStaffMapForPart; exports.changeBarline = _chunkLLFU3JZAjs.changeBarline; exports.changeClef = _chunkLLFU3JZAjs.changeClef; exports.changeKey = _chunkLLFU3JZAjs.changeKey; exports.changeNoteDuration = _chunkLLFU3JZAjs.changeNoteDuration; exports.changeTime = _chunkLLFU3JZAjs.changeTime; exports.convertToGrace = _chunkLLFU3JZAjs.convertToGrace; exports.copyNotes = _chunkLLFU3JZAjs.copyNotes; exports.copyNotesMultiMeasure = _chunkLLFU3JZAjs.copyNotesMultiMeasure; exports.countNotes = _chunk24XBPMRJjs.countNotes; exports.createTuplet = _chunkLLFU3JZAjs.createTuplet; exports.cutNotes = _chunkLLFU3JZAjs.cutNotes; exports.decodeBuffer = decodeBuffer; exports.deleteMeasure = _chunkLLFU3JZAjs.deleteMeasure; exports.deleteNote = _chunkLLFU3JZAjs.deleteNote; exports.deleteNoteChecked = _chunkLLFU3JZAjs.deleteNoteChecked; exports.duplicatePart = _chunkLLFU3JZAjs.duplicatePart; exports.exportMidi = exportMidi; exports.findBarlines = _chunk24XBPMRJjs.findBarlines; exports.findDirectionsByType = _chunk24XBPMRJjs.findDirectionsByType; exports.findNotes = _chunk24XBPMRJjs.findNotes; exports.findNotesWithNotation = _chunk24XBPMRJjs.findNotesWithNotation; exports.formatLocation = _chunkLLFU3JZAjs.formatLocation; exports.generateId = _chunkLLFU3JZAjs.generateId; exports.getAbsolutePosition = _chunk24XBPMRJjs.getAbsolutePosition; exports.getAdjacentNotes = _chunk24XBPMRJjs.getAdjacentNotes; exports.getAllNotes = _chunk24XBPMRJjs.getAllNotes; exports.getAllPartInfos = getAllPartInfos; exports.getAttributesAtMeasure = _chunk24XBPMRJjs.getAttributesAtMeasure; exports.getBeamGroups = _chunk24XBPMRJjs.getBeamGroups; exports.getChordProgression = _chunk24XBPMRJjs.getChordProgression; exports.getChords = _chunk24XBPMRJjs.getChords; exports.getClefChanges = _chunk24XBPMRJjs.getClefChanges; exports.getClefForStaff = _chunk24XBPMRJjs.getClefForStaff; exports.getDirectionOfKind = getDirectionOfKind; exports.getDirections = _chunk24XBPMRJjs.getDirections; exports.getDirectionsAtPosition = _chunk24XBPMRJjs.getDirectionsAtPosition; exports.getDirectionsOfKind = getDirectionsOfKind; exports.getDivisions = _chunk24XBPMRJjs.getDivisions; exports.getDuration = _chunk24XBPMRJjs.getDuration; exports.getDynamics = _chunk24XBPMRJjs.getDynamics; exports.getEffectiveStaff = _chunk24XBPMRJjs.getEffectiveStaff; exports.getEndings = _chunk24XBPMRJjs.getEndings; exports.getEntriesAtPosition = _chunk24XBPMRJjs.getEntriesAtPosition; exports.getEntriesForStaff = _chunk24XBPMRJjs.getEntriesForStaff; exports.getEntriesInRange = _chunk24XBPMRJjs.getEntriesInRange; exports.getHarmonies = _chunk24XBPMRJjs.getHarmonies; exports.getHarmonyAtPosition = _chunk24XBPMRJjs.getHarmonyAtPosition; exports.getKeyChanges = _chunk24XBPMRJjs.getKeyChanges; exports.getLyricText = _chunk24XBPMRJjs.getLyricText; exports.getLyrics = _chunk24XBPMRJjs.getLyrics; exports.getMeasure = _chunk24XBPMRJjs.getMeasure; exports.getMeasureByIndex = _chunk24XBPMRJjs.getMeasureByIndex; exports.getMeasureContext = _chunkLLFU3JZAjs.getMeasureContext; exports.getMeasureCount = _chunk24XBPMRJjs.getMeasureCount; exports.getMeasureEndPosition = _chunk24XBPMRJjs.getMeasureEndPosition; exports.getNextNote = _chunk24XBPMRJjs.getNextNote; exports.getNormalizedDuration = _chunk24XBPMRJjs.getNormalizedDuration; exports.getNormalizedPosition = _chunk24XBPMRJjs.getNormalizedPosition; exports.getNotesAtPosition = _chunk24XBPMRJjs.getNotesAtPosition; exports.getNotesForStaff = _chunk24XBPMRJjs.getNotesForStaff; exports.getNotesForVoice = _chunk24XBPMRJjs.getNotesForVoice; exports.getNotesInRange = _chunk24XBPMRJjs.getNotesInRange; exports.getOctaveShifts = _chunk24XBPMRJjs.getOctaveShifts; exports.getPartAbbreviation = getPartAbbreviation; exports.getPartById = _chunk24XBPMRJjs.getPartById; exports.getPartByIndex = _chunk24XBPMRJjs.getPartByIndex; exports.getPartCount = _chunk24XBPMRJjs.getPartCount; exports.getPartIds = _chunk24XBPMRJjs.getPartIds; exports.getPartIndex = _chunk24XBPMRJjs.getPartIndex; exports.getPartInfo = getPartInfo; exports.getPartName = getPartName; exports.getPartNameMap = getPartNameMap; exports.getPedalMarkings = _chunk24XBPMRJjs.getPedalMarkings; exports.getPrevNote = _chunk24XBPMRJjs.getPrevNote; exports.getRepeatStructure = _chunk24XBPMRJjs.getRepeatStructure; exports.getSlurSpans = _chunk24XBPMRJjs.getSlurSpans; exports.getSoundDamperPedal = getSoundDamperPedal; exports.getSoundDynamics = getSoundDynamics; exports.getSoundSoftPedal = getSoundSoftPedal; exports.getSoundSostenutoPedal = getSoundSostenutoPedal; exports.getSoundTempo = getSoundTempo; exports.getStaffRange = _chunk24XBPMRJjs.getStaffRange; exports.getStaveCount = _chunk24XBPMRJjs.getStaveCount; exports.getStaves = _chunk24XBPMRJjs.getStaves; exports.getStructuralChanges = _chunk24XBPMRJjs.getStructuralChanges; exports.getTempoMarkings = _chunk24XBPMRJjs.getTempoMarkings; exports.getTiedNoteGroups = _chunk24XBPMRJjs.getTiedNoteGroups; exports.getTimeChanges = _chunk24XBPMRJjs.getTimeChanges; exports.getTupletGroups = _chunk24XBPMRJjs.getTupletGroups; exports.getVerseCount = _chunk24XBPMRJjs.getVerseCount; exports.getVerticalSlice = _chunk24XBPMRJjs.getVerticalSlice; exports.getVoiceLine = _chunk24XBPMRJjs.getVoiceLine; exports.getVoiceLineInRange = _chunk24XBPMRJjs.getVoiceLineInRange; exports.getVoices = _chunk24XBPMRJjs.getVoices; exports.getVoicesForStaff = _chunk24XBPMRJjs.getVoicesForStaff; exports.getWedges = _chunk24XBPMRJjs.getWedges; exports.groupByStaff = _chunk24XBPMRJjs.groupByStaff; exports.groupByVoice = _chunk24XBPMRJjs.groupByVoice; exports.hasBeam = hasBeam; exports.hasDirectionOfKind = hasDirectionOfKind; exports.hasLyrics = hasLyrics; exports.hasMultipleStaves = _chunk24XBPMRJjs.hasMultipleStaves; exports.hasNotations = hasNotations; exports.hasNotes = _chunk24XBPMRJjs.hasNotes; exports.hasTie = hasTie; exports.hasTieStart = hasTieStart; exports.hasTieStop = hasTieStop; exports.hasTuplet = hasTuplet; exports.inferStaff = _chunk24XBPMRJjs.inferStaff; exports.insertClefChange = _chunkLLFU3JZAjs.insertClefChange; exports.insertMeasure = _chunkLLFU3JZAjs.insertMeasure; exports.insertNote = _chunkLLFU3JZAjs.insertNote; exports.isChordNote = isChordNote; exports.isCompressed = isCompressed; exports.isCueNote = isCueNote; exports.isGraceNote = isGraceNote; exports.isPartInfo = isPartInfo; exports.isPitchedNote = isPitchedNote; exports.isRest = isRest; exports.isRestMeasure = _chunk24XBPMRJjs.isRestMeasure; exports.isUnpitchedNote = isUnpitchedNote; exports.isValid = _chunkLLFU3JZAjs.isValid; exports.iterateEntries = _chunk24XBPMRJjs.iterateEntries; exports.iterateNotes = _chunk24XBPMRJjs.iterateNotes; exports.lowerAccidental = _chunkLLFU3JZAjs.lowerAccidental; exports.measureRoundtrip = _chunk24XBPMRJjs.measureRoundtrip; exports.modifyDynamics = _chunkLLFU3JZAjs.modifyDynamics; exports.modifyNoteDuration = _chunkLLFU3JZAjs.modifyNoteDuration; exports.modifyNoteDurationChecked = _chunkLLFU3JZAjs.modifyNoteDurationChecked; exports.modifyNotePitch = _chunkLLFU3JZAjs.modifyNotePitch; exports.modifyNotePitchChecked = _chunkLLFU3JZAjs.modifyNotePitchChecked; exports.modifyTempo = _chunkLLFU3JZAjs.modifyTempo; exports.moveNoteToStaff = _chunkLLFU3JZAjs.moveNoteToStaff; exports.parse = parse; exports.parseAbc = parseAbc; exports.parseAuto = parseAuto; exports.parseCompressed = parseCompressed; exports.parseFile = parseFile; exports.pasteNotes = _chunkLLFU3JZAjs.pasteNotes; exports.pasteNotesMultiMeasure = _chunkLLFU3JZAjs.pasteNotesMultiMeasure; exports.pitchToSemitone = _chunk24XBPMRJjs.pitchToSemitone; exports.raiseAccidental = _chunkLLFU3JZAjs.raiseAccidental; exports.removeArticulation = _chunkLLFU3JZAjs.removeArticulation; exports.removeBeam = _chunkLLFU3JZAjs.removeBeam; exports.removeBowing = _chunkLLFU3JZAjs.removeBowing; exports.removeBreathMark = _chunkLLFU3JZAjs.removeBreathMark; exports.removeCaesura = _chunkLLFU3JZAjs.removeCaesura; exports.removeChordSymbol = _chunkLLFU3JZAjs.removeChordSymbol; exports.removeDynamics = _chunkLLFU3JZAjs.removeDynamics; exports.removeEnding = _chunkLLFU3JZAjs.removeEnding; exports.removeFermata = _chunkLLFU3JZAjs.removeFermata; exports.removeFingering = _chunkLLFU3JZAjs.removeFingering; exports.removeGraceNote = _chunkLLFU3JZAjs.removeGraceNote; exports.removeHarmony = _chunkLLFU3JZAjs.removeHarmony; exports.removeLyric = _chunkLLFU3JZAjs.removeLyric; exports.removeNote = _chunkLLFU3JZAjs.removeNote; exports.removeOctaveShift = _chunkLLFU3JZAjs.removeOctaveShift; exports.removeOrnament = _chunkLLFU3JZAjs.removeOrnament; exports.removePart = _chunkLLFU3JZAjs.removePart; exports.removePedal = _chunkLLFU3JZAjs.removePedal; exports.removeRepeat = _chunkLLFU3JZAjs.removeRepeat; exports.removeRepeatBarline = _chunkLLFU3JZAjs.removeRepeatBarline; exports.removeSlur = _chunkLLFU3JZAjs.removeSlur; exports.removeStringNumber = _chunkLLFU3JZAjs.removeStringNumber; exports.removeTempo = _chunkLLFU3JZAjs.removeTempo; exports.removeTie = _chunkLLFU3JZAjs.removeTie; exports.removeTuplet = _chunkLLFU3JZAjs.removeTuplet; exports.removeWedge = _chunkLLFU3JZAjs.removeWedge; exports.scoresEqual = _chunk24XBPMRJjs.scoresEqual; exports.serialize = serialize; exports.serializeAbc = serializeAbc; exports.serializeCompressed = serializeCompressed; exports.serializeToFile = serializeToFile; exports.setBarline = _chunkLLFU3JZAjs.setBarline; exports.setBeaming = _chunkLLFU3JZAjs.setBeaming; exports.setNotePitch = _chunkLLFU3JZAjs.setNotePitch; exports.setNotePitchBySemitone = _chunkLLFU3JZAjs.setNotePitchBySemitone; exports.setStaves = _chunkLLFU3JZAjs.setStaves; exports.shiftNotePitch = _chunkLLFU3JZAjs.shiftNotePitch; exports.stopOctaveShift = _chunkLLFU3JZAjs.stopOctaveShift; exports.transpose = _chunkLLFU3JZAjs.transpose; exports.transposeChecked = _chunkLLFU3JZAjs.transposeChecked; exports.updateChordSymbol = _chunkLLFU3JZAjs.updateChordSymbol; exports.updateHarmony = _chunkLLFU3JZAjs.updateHarmony; exports.updateLyric = _chunkLLFU3JZAjs.updateLyric; exports.validate = _chunkLLFU3JZAjs.validate; exports.validateBackupForward = _chunkLLFU3JZAjs.validateBackupForward; exports.validateBeams = _chunkLLFU3JZAjs.validateBeams; exports.validateDivisions = _chunkLLFU3JZAjs.validateDivisions; exports.validateMeasureDuration = _chunkLLFU3JZAjs.validateMeasureDuration; exports.validateMeasureLocal = _chunkLLFU3JZAjs.validateMeasureLocal; exports.validatePartReferences = _chunkLLFU3JZAjs.validatePartReferences; exports.validatePartStructure = _chunkLLFU3JZAjs.validatePartStructure; exports.validateSlurs = _chunkLLFU3JZAjs.validateSlurs; exports.validateSlursAcrossMeasures = _chunkLLFU3JZAjs.validateSlursAcrossMeasures; exports.validateStaffStructure = _chunkLLFU3JZAjs.validateStaffStructure; exports.validateTies = _chunkLLFU3JZAjs.validateTies; exports.validateTiesAcrossMeasures = _chunkLLFU3JZAjs.validateTiesAcrossMeasures; exports.validateTuplets = _chunkLLFU3JZAjs.validateTuplets; exports.validateVoiceStaff = _chunkLLFU3JZAjs.validateVoiceStaff; exports.withAbsolutePositions = _chunk24XBPMRJjs.withAbsolutePositions;