@tspro/web-music-score 1.1.0 → 3.0.0
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/CHANGELOG.md +25 -0
- package/README.md +337 -204
- package/dist/audio/index.d.mts +22 -0
- package/dist/audio/index.d.ts +22 -0
- package/dist/audio/index.js +147 -0
- package/dist/audio/index.mjs +109 -0
- package/dist/audio-cg/index.d.mts +4 -0
- package/dist/audio-cg/index.d.ts +4 -0
- package/dist/audio-cg/index.js +124 -0
- package/dist/audio-cg/index.mjs +91 -0
- package/dist/chunk-ZWFAOHYM.mjs +9 -0
- package/dist/core/index.d.mts +21 -0
- package/dist/core/index.d.ts +21 -0
- package/dist/core/index.js +72 -0
- package/dist/core/index.mjs +45 -0
- package/dist/guitar-BIFwFT31.d.ts +24 -0
- package/dist/guitar-zASF7B1g.d.mts +24 -0
- package/dist/iife/index.global.js +221 -0
- package/dist/interface-CLb7xa7_.d.mts +1768 -0
- package/dist/interface-DXyXwLBB.d.ts +1768 -0
- package/dist/note-B5ZtlHc8.d.mts +99 -0
- package/dist/note-B5ZtlHc8.d.ts +99 -0
- package/dist/pieces/index.d.mts +15 -0
- package/dist/pieces/index.d.ts +15 -0
- package/dist/pieces/index.js +56 -0
- package/dist/pieces/index.mjs +29 -0
- package/dist/react-ui/index.d.mts +170 -0
- package/dist/react-ui/index.d.ts +170 -0
- package/dist/react-ui/index.js +624 -0
- package/dist/react-ui/index.mjs +582 -0
- package/dist/scale-B_2MZaT9.d.ts +87 -0
- package/dist/scale-C-YS5iVG.d.mts +87 -0
- package/dist/score/index.d.mts +43 -0
- package/dist/score/index.d.ts +43 -0
- package/dist/score/index.js +7753 -0
- package/dist/score/index.mjs +7669 -0
- package/dist/tempo-DoJd-UYT.d.ts +120 -0
- package/dist/tempo-TjQKn46X.d.mts +120 -0
- package/dist/theory/index.d.mts +48 -0
- package/dist/theory/index.d.ts +48 -0
- package/dist/theory/index.js +1783 -0
- package/dist/theory/index.mjs +1716 -0
- package/package.json +98 -55
- package/dist/index.cjs.js +0 -41053
- package/dist/index.d.ts +0 -1281
- package/dist/index.esm.mjs +0 -41044
- package/dist/index.umd.min.js +0 -9
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { N as Note, S as SymbolSet } from './note-B5ZtlHc8.js';
|
|
2
|
+
import { K as KeySignature } from './tempo-DoJd-UYT.js';
|
|
3
|
+
|
|
4
|
+
/** @public */
|
|
5
|
+
type IntervalDirection = "Unison" | "Ascending" | "Descending";
|
|
6
|
+
/** @public */
|
|
7
|
+
type IntervalQuality = "Perfect" | "Major" | "minor" | "Augmented" | "Doubly Augmented" | "diminished" | "doubly diminished";
|
|
8
|
+
/** @public */
|
|
9
|
+
declare function validateIntervalQuality(q: string): IntervalQuality;
|
|
10
|
+
/** @public */
|
|
11
|
+
declare class Interval {
|
|
12
|
+
readonly note1: Note;
|
|
13
|
+
readonly note2: Note;
|
|
14
|
+
readonly direction: IntervalDirection;
|
|
15
|
+
readonly semitones: number;
|
|
16
|
+
readonly quantity: number;
|
|
17
|
+
readonly quality: IntervalQuality;
|
|
18
|
+
private constructor();
|
|
19
|
+
static get(note1: Note, note2: Note): Interval | undefined;
|
|
20
|
+
toString(): string;
|
|
21
|
+
toAbbrString(): string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/** @public */
|
|
25
|
+
type Degree = 1 | 2 | "b3" | 3 | 4 | "b5" | 5 | "#5" | 6 | "bb7" | "b7" | 7 | "#7" | "b9" | 9 | "#9" | 11 | 13;
|
|
26
|
+
/** @public */
|
|
27
|
+
declare enum ScaleType {
|
|
28
|
+
Major = "Major",
|
|
29
|
+
NaturalMinor = "Natural Minor",
|
|
30
|
+
HarmonicMinor = "Harmonic Minor",
|
|
31
|
+
Ionian = "Ionian",
|
|
32
|
+
Dorian = "Dorian",
|
|
33
|
+
Phrygian = "Phrygian",
|
|
34
|
+
Lydian = "Lydian",
|
|
35
|
+
Mixolydian = "Mixolydian",
|
|
36
|
+
Aeolian = "Aeolian",
|
|
37
|
+
Locrian = "Locrian",
|
|
38
|
+
MajorPentatonic = "Major Pentatonic",
|
|
39
|
+
MinorPentatonic = "Minor Pentatonic",
|
|
40
|
+
MajorHexatonicBlues = "Major Hexatonic Blues",
|
|
41
|
+
MinorHexatonicBlues = "Minor Hexatonic Blues",
|
|
42
|
+
HeptatonicBlues = "Heptatonic Blues"
|
|
43
|
+
}
|
|
44
|
+
/** @public */
|
|
45
|
+
declare class Scale extends KeySignature {
|
|
46
|
+
readonly tonic: string;
|
|
47
|
+
readonly scaleType: ScaleType;
|
|
48
|
+
private readonly scaleDegrees;
|
|
49
|
+
private readonly scaleNotes;
|
|
50
|
+
private readonly chromaticClassDegree;
|
|
51
|
+
constructor(tonic: string, scaleType: ScaleType);
|
|
52
|
+
static equals(a: Scale | null | undefined, b: Scale | null | undefined): boolean;
|
|
53
|
+
getScaleName(symbolSet?: SymbolSet): string;
|
|
54
|
+
getScaleNotes(bottomNote: string, numOctaves: number): Note[];
|
|
55
|
+
getScaleOverview(): string;
|
|
56
|
+
getScaleSteps(): number[];
|
|
57
|
+
getScaleStringSteps(): string[];
|
|
58
|
+
isScaleNote(note: Note): boolean;
|
|
59
|
+
isScaleRootNote(note: Note): boolean;
|
|
60
|
+
getIntervalFromRootNote(note: Note): Interval;
|
|
61
|
+
private preferredChromaticNoteCache;
|
|
62
|
+
getPreferredChromaticNote(chromaticId: number): Note;
|
|
63
|
+
}
|
|
64
|
+
/** @public */
|
|
65
|
+
declare class ScaleFactory {
|
|
66
|
+
readonly type: ScaleType;
|
|
67
|
+
private tonicList;
|
|
68
|
+
private scaleMap;
|
|
69
|
+
constructor(type: ScaleType);
|
|
70
|
+
getTonicList(): ReadonlyArray<string>;
|
|
71
|
+
getDefaultTonic(): string;
|
|
72
|
+
getType(): ScaleType;
|
|
73
|
+
getScale(tonic: string): Scale;
|
|
74
|
+
hasScale(tonic: string): boolean;
|
|
75
|
+
}
|
|
76
|
+
/** @public */
|
|
77
|
+
declare function getScaleFactoryList(): ReadonlyArray<ScaleFactory | string>;
|
|
78
|
+
/** @public */
|
|
79
|
+
declare function getScaleFactory(scaleType: ScaleType): ScaleFactory;
|
|
80
|
+
/** @public */
|
|
81
|
+
declare function validateScaleType(scaleType: unknown): ScaleType;
|
|
82
|
+
/** @public */
|
|
83
|
+
declare function getScale(tonic: string, scaleType: ScaleType): Scale;
|
|
84
|
+
/** @public */
|
|
85
|
+
declare function getDefaultScale(): Scale;
|
|
86
|
+
|
|
87
|
+
export { type Degree as D, type IntervalDirection as I, ScaleType as S, type IntervalQuality as a, Interval as b, Scale as c, ScaleFactory as d, getScaleFactory as e, validateScaleType as f, getScaleFactoryList as g, getScale as h, getDefaultScale as i, validateIntervalQuality as v };
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { N as Note, S as SymbolSet } from './note-B5ZtlHc8.mjs';
|
|
2
|
+
import { K as KeySignature } from './tempo-TjQKn46X.mjs';
|
|
3
|
+
|
|
4
|
+
/** @public */
|
|
5
|
+
type IntervalDirection = "Unison" | "Ascending" | "Descending";
|
|
6
|
+
/** @public */
|
|
7
|
+
type IntervalQuality = "Perfect" | "Major" | "minor" | "Augmented" | "Doubly Augmented" | "diminished" | "doubly diminished";
|
|
8
|
+
/** @public */
|
|
9
|
+
declare function validateIntervalQuality(q: string): IntervalQuality;
|
|
10
|
+
/** @public */
|
|
11
|
+
declare class Interval {
|
|
12
|
+
readonly note1: Note;
|
|
13
|
+
readonly note2: Note;
|
|
14
|
+
readonly direction: IntervalDirection;
|
|
15
|
+
readonly semitones: number;
|
|
16
|
+
readonly quantity: number;
|
|
17
|
+
readonly quality: IntervalQuality;
|
|
18
|
+
private constructor();
|
|
19
|
+
static get(note1: Note, note2: Note): Interval | undefined;
|
|
20
|
+
toString(): string;
|
|
21
|
+
toAbbrString(): string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/** @public */
|
|
25
|
+
type Degree = 1 | 2 | "b3" | 3 | 4 | "b5" | 5 | "#5" | 6 | "bb7" | "b7" | 7 | "#7" | "b9" | 9 | "#9" | 11 | 13;
|
|
26
|
+
/** @public */
|
|
27
|
+
declare enum ScaleType {
|
|
28
|
+
Major = "Major",
|
|
29
|
+
NaturalMinor = "Natural Minor",
|
|
30
|
+
HarmonicMinor = "Harmonic Minor",
|
|
31
|
+
Ionian = "Ionian",
|
|
32
|
+
Dorian = "Dorian",
|
|
33
|
+
Phrygian = "Phrygian",
|
|
34
|
+
Lydian = "Lydian",
|
|
35
|
+
Mixolydian = "Mixolydian",
|
|
36
|
+
Aeolian = "Aeolian",
|
|
37
|
+
Locrian = "Locrian",
|
|
38
|
+
MajorPentatonic = "Major Pentatonic",
|
|
39
|
+
MinorPentatonic = "Minor Pentatonic",
|
|
40
|
+
MajorHexatonicBlues = "Major Hexatonic Blues",
|
|
41
|
+
MinorHexatonicBlues = "Minor Hexatonic Blues",
|
|
42
|
+
HeptatonicBlues = "Heptatonic Blues"
|
|
43
|
+
}
|
|
44
|
+
/** @public */
|
|
45
|
+
declare class Scale extends KeySignature {
|
|
46
|
+
readonly tonic: string;
|
|
47
|
+
readonly scaleType: ScaleType;
|
|
48
|
+
private readonly scaleDegrees;
|
|
49
|
+
private readonly scaleNotes;
|
|
50
|
+
private readonly chromaticClassDegree;
|
|
51
|
+
constructor(tonic: string, scaleType: ScaleType);
|
|
52
|
+
static equals(a: Scale | null | undefined, b: Scale | null | undefined): boolean;
|
|
53
|
+
getScaleName(symbolSet?: SymbolSet): string;
|
|
54
|
+
getScaleNotes(bottomNote: string, numOctaves: number): Note[];
|
|
55
|
+
getScaleOverview(): string;
|
|
56
|
+
getScaleSteps(): number[];
|
|
57
|
+
getScaleStringSteps(): string[];
|
|
58
|
+
isScaleNote(note: Note): boolean;
|
|
59
|
+
isScaleRootNote(note: Note): boolean;
|
|
60
|
+
getIntervalFromRootNote(note: Note): Interval;
|
|
61
|
+
private preferredChromaticNoteCache;
|
|
62
|
+
getPreferredChromaticNote(chromaticId: number): Note;
|
|
63
|
+
}
|
|
64
|
+
/** @public */
|
|
65
|
+
declare class ScaleFactory {
|
|
66
|
+
readonly type: ScaleType;
|
|
67
|
+
private tonicList;
|
|
68
|
+
private scaleMap;
|
|
69
|
+
constructor(type: ScaleType);
|
|
70
|
+
getTonicList(): ReadonlyArray<string>;
|
|
71
|
+
getDefaultTonic(): string;
|
|
72
|
+
getType(): ScaleType;
|
|
73
|
+
getScale(tonic: string): Scale;
|
|
74
|
+
hasScale(tonic: string): boolean;
|
|
75
|
+
}
|
|
76
|
+
/** @public */
|
|
77
|
+
declare function getScaleFactoryList(): ReadonlyArray<ScaleFactory | string>;
|
|
78
|
+
/** @public */
|
|
79
|
+
declare function getScaleFactory(scaleType: ScaleType): ScaleFactory;
|
|
80
|
+
/** @public */
|
|
81
|
+
declare function validateScaleType(scaleType: unknown): ScaleType;
|
|
82
|
+
/** @public */
|
|
83
|
+
declare function getScale(tonic: string, scaleType: ScaleType): Scale;
|
|
84
|
+
/** @public */
|
|
85
|
+
declare function getDefaultScale(): Scale;
|
|
86
|
+
|
|
87
|
+
export { type Degree as D, type IntervalDirection as I, ScaleType as S, type IntervalQuality as a, Interval as b, Scale as c, ScaleFactory as d, getScaleFactory as e, validateScaleType as f, getScaleFactoryList as g, getScale as h, getDefaultScale as i, validateIntervalQuality as v };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { S as StaffPreset, a as ScoreConfiguration, O as ObjMeasure, M as MDocument, N as NoteOptions, R as RestOptions, F as Fermata, b as Navigation, C as Connective, T as TieType, c as NoteAnchor, L as Label, A as Annotation } from '../interface-CLb7xa7_.mjs';
|
|
2
|
+
export { a3 as Arpeggio, X as Clef, a4 as ConnectiveSpan, D as DivRect, j as MAccidental, l as MArpeggio, u as MBarLineLeft, t as MBarLineRight, m as MBeamGroup, k as MConnective, o as MEnding, Q as MExtensionLine, p as MFermata, q as MHeader, r as MImage, s as MMeasure, w as MNoteGroup, W as MPlaybackButtons, U as MPlayer, V as MRenderer, z as MRest, E as MRhythmColumn, G as MScoreRow, J as MSignature, K as MSpecialText, H as MStaff, n as MStaffBeamGroup, x as MStaffNoteGroup, B as MStaffRest, v as MStaffTabBarLine, I as MTab, y as MTabNoteGroup, P as MText, i as MusicInterface, a5 as PlayState, a6 as PlayStateChangeListener, e as ScoreEvent, h as ScoreEventListener, d as ScoreEventType, g as ScoreObjectEvent, f as ScoreStaffPosEvent, Y as StaffConfig, a2 as Stem, a0 as StringNumber, Z as TabConfig, _ as VoiceId, a1 as getStringNumbers, $ as getVoiceIds } from '../interface-CLb7xa7_.mjs';
|
|
3
|
+
import { N as Note } from '../note-B5ZtlHc8.mjs';
|
|
4
|
+
import { S as ScaleType, c as Scale } from '../scale-C-YS5iVG.mjs';
|
|
5
|
+
import { K as KeySignature, a as TimeSignature, T as TimeSignatureString, N as NoteLength } from '../tempo-TjQKn46X.mjs';
|
|
6
|
+
import '@tspro/ts-utils-lib';
|
|
7
|
+
|
|
8
|
+
declare class DocumentBuilder {
|
|
9
|
+
private readonly doc;
|
|
10
|
+
constructor();
|
|
11
|
+
setScoreConfiguration(staffPreset: StaffPreset): DocumentBuilder;
|
|
12
|
+
setScoreConfiguration(config: ScoreConfiguration): DocumentBuilder;
|
|
13
|
+
getMeasure(): ObjMeasure;
|
|
14
|
+
getDocument(): MDocument;
|
|
15
|
+
setHeader(title?: string, composer?: string, arranger?: string): DocumentBuilder;
|
|
16
|
+
setMeasuresPerRow(measuresPerRow: number): DocumentBuilder;
|
|
17
|
+
addMeasure(): DocumentBuilder;
|
|
18
|
+
setKeySignature(tonic: string, scaleType: ScaleType): DocumentBuilder;
|
|
19
|
+
setKeySignature(keySignature: KeySignature): DocumentBuilder;
|
|
20
|
+
setKeySignature(scale: Scale): DocumentBuilder;
|
|
21
|
+
setTimeSignature(timeSignature: TimeSignature | TimeSignatureString): DocumentBuilder;
|
|
22
|
+
setTempo(beatsPerMinute: number, beatLength?: NoteLength, dotted?: boolean): DocumentBuilder;
|
|
23
|
+
addNote(voiceId: number, note: Note | string, noteLength: NoteLength, options?: NoteOptions): DocumentBuilder;
|
|
24
|
+
addChord(voiceId: number, notes: (Note | string)[], noteLength: NoteLength, options?: NoteOptions): DocumentBuilder;
|
|
25
|
+
addRest(voiceId: number, restLength: NoteLength, options?: RestOptions): DocumentBuilder;
|
|
26
|
+
addFermata(fermata?: Fermata): DocumentBuilder;
|
|
27
|
+
addNavigation(navigation: Navigation): DocumentBuilder;
|
|
28
|
+
addNavigation(navigation: Navigation.EndRepeat, playCount: number): DocumentBuilder;
|
|
29
|
+
addNavigation(navigation: Navigation.Ending, ...passages: number[]): DocumentBuilder;
|
|
30
|
+
addConnective(connective: Connective.Tie, tieSpan?: number | TieType, notAnchor?: NoteAnchor): DocumentBuilder;
|
|
31
|
+
addConnective(connective: Connective.Slur, slurSpan?: number, notAnchor?: NoteAnchor): DocumentBuilder;
|
|
32
|
+
addConnective(connective: Connective.Slide, notAnchor?: NoteAnchor): DocumentBuilder;
|
|
33
|
+
addLabel(label: Label, text: string): DocumentBuilder;
|
|
34
|
+
addAnnotation(annotation: Annotation, text: string): DocumentBuilder;
|
|
35
|
+
addExtension(extensionLength: NoteLength | number, extensionVisible?: boolean): DocumentBuilder;
|
|
36
|
+
endSong(): DocumentBuilder;
|
|
37
|
+
endSection(): DocumentBuilder;
|
|
38
|
+
endRow(): DocumentBuilder;
|
|
39
|
+
completeRests(voiceId?: number): DocumentBuilder;
|
|
40
|
+
addScaleArpeggio(scale: Scale, bottomNote: string, numOctaves: number): DocumentBuilder;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { Annotation, Connective, DocumentBuilder, Fermata, Label, MDocument, Navigation, NoteAnchor, NoteOptions, RestOptions, ScoreConfiguration, StaffPreset, TieType };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { S as StaffPreset, a as ScoreConfiguration, O as ObjMeasure, M as MDocument, N as NoteOptions, R as RestOptions, F as Fermata, b as Navigation, C as Connective, T as TieType, c as NoteAnchor, L as Label, A as Annotation } from '../interface-DXyXwLBB.js';
|
|
2
|
+
export { a3 as Arpeggio, X as Clef, a4 as ConnectiveSpan, D as DivRect, j as MAccidental, l as MArpeggio, u as MBarLineLeft, t as MBarLineRight, m as MBeamGroup, k as MConnective, o as MEnding, Q as MExtensionLine, p as MFermata, q as MHeader, r as MImage, s as MMeasure, w as MNoteGroup, W as MPlaybackButtons, U as MPlayer, V as MRenderer, z as MRest, E as MRhythmColumn, G as MScoreRow, J as MSignature, K as MSpecialText, H as MStaff, n as MStaffBeamGroup, x as MStaffNoteGroup, B as MStaffRest, v as MStaffTabBarLine, I as MTab, y as MTabNoteGroup, P as MText, i as MusicInterface, a5 as PlayState, a6 as PlayStateChangeListener, e as ScoreEvent, h as ScoreEventListener, d as ScoreEventType, g as ScoreObjectEvent, f as ScoreStaffPosEvent, Y as StaffConfig, a2 as Stem, a0 as StringNumber, Z as TabConfig, _ as VoiceId, a1 as getStringNumbers, $ as getVoiceIds } from '../interface-DXyXwLBB.js';
|
|
3
|
+
import { N as Note } from '../note-B5ZtlHc8.js';
|
|
4
|
+
import { S as ScaleType, c as Scale } from '../scale-B_2MZaT9.js';
|
|
5
|
+
import { K as KeySignature, a as TimeSignature, T as TimeSignatureString, N as NoteLength } from '../tempo-DoJd-UYT.js';
|
|
6
|
+
import '@tspro/ts-utils-lib';
|
|
7
|
+
|
|
8
|
+
declare class DocumentBuilder {
|
|
9
|
+
private readonly doc;
|
|
10
|
+
constructor();
|
|
11
|
+
setScoreConfiguration(staffPreset: StaffPreset): DocumentBuilder;
|
|
12
|
+
setScoreConfiguration(config: ScoreConfiguration): DocumentBuilder;
|
|
13
|
+
getMeasure(): ObjMeasure;
|
|
14
|
+
getDocument(): MDocument;
|
|
15
|
+
setHeader(title?: string, composer?: string, arranger?: string): DocumentBuilder;
|
|
16
|
+
setMeasuresPerRow(measuresPerRow: number): DocumentBuilder;
|
|
17
|
+
addMeasure(): DocumentBuilder;
|
|
18
|
+
setKeySignature(tonic: string, scaleType: ScaleType): DocumentBuilder;
|
|
19
|
+
setKeySignature(keySignature: KeySignature): DocumentBuilder;
|
|
20
|
+
setKeySignature(scale: Scale): DocumentBuilder;
|
|
21
|
+
setTimeSignature(timeSignature: TimeSignature | TimeSignatureString): DocumentBuilder;
|
|
22
|
+
setTempo(beatsPerMinute: number, beatLength?: NoteLength, dotted?: boolean): DocumentBuilder;
|
|
23
|
+
addNote(voiceId: number, note: Note | string, noteLength: NoteLength, options?: NoteOptions): DocumentBuilder;
|
|
24
|
+
addChord(voiceId: number, notes: (Note | string)[], noteLength: NoteLength, options?: NoteOptions): DocumentBuilder;
|
|
25
|
+
addRest(voiceId: number, restLength: NoteLength, options?: RestOptions): DocumentBuilder;
|
|
26
|
+
addFermata(fermata?: Fermata): DocumentBuilder;
|
|
27
|
+
addNavigation(navigation: Navigation): DocumentBuilder;
|
|
28
|
+
addNavigation(navigation: Navigation.EndRepeat, playCount: number): DocumentBuilder;
|
|
29
|
+
addNavigation(navigation: Navigation.Ending, ...passages: number[]): DocumentBuilder;
|
|
30
|
+
addConnective(connective: Connective.Tie, tieSpan?: number | TieType, notAnchor?: NoteAnchor): DocumentBuilder;
|
|
31
|
+
addConnective(connective: Connective.Slur, slurSpan?: number, notAnchor?: NoteAnchor): DocumentBuilder;
|
|
32
|
+
addConnective(connective: Connective.Slide, notAnchor?: NoteAnchor): DocumentBuilder;
|
|
33
|
+
addLabel(label: Label, text: string): DocumentBuilder;
|
|
34
|
+
addAnnotation(annotation: Annotation, text: string): DocumentBuilder;
|
|
35
|
+
addExtension(extensionLength: NoteLength | number, extensionVisible?: boolean): DocumentBuilder;
|
|
36
|
+
endSong(): DocumentBuilder;
|
|
37
|
+
endSection(): DocumentBuilder;
|
|
38
|
+
endRow(): DocumentBuilder;
|
|
39
|
+
completeRests(voiceId?: number): DocumentBuilder;
|
|
40
|
+
addScaleArpeggio(scale: Scale, bottomNote: string, numOctaves: number): DocumentBuilder;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { Annotation, Connective, DocumentBuilder, Fermata, Label, MDocument, Navigation, NoteAnchor, NoteOptions, RestOptions, ScoreConfiguration, StaffPreset, TieType };
|