musicxml2json-piano
Version:
MusicXML to JSON for piano.
6 lines (5 loc) • 360 B
TypeScript
import { Clef, NoteType } from '@/types';
export declare function noteTypeToNumber(type: NoteType): number;
export declare function numberToNoteType(num: number): NoteType;
export declare function calculateRelativePosition(noteStep: string, noteOctave: number, staff: Clef): number | null;
export declare function noteToMidi(note: any, octave: any): any;