paulrosen / abcjs

javascript for rendering abc music notation
Other
1.94k stars 285 forks source link

type: `playEvent` with parameter declaration in tpyescript #983

Closed RSS1102 closed 10 months ago

RSS1102 commented 10 months ago

image

export function playEvent(
pitches: MidiPitches,
 graceNotes?: MidiGracePitches , 
milliSecondsPerMeasure: number, 
soundFontUrl? : string,
 debugCallback?: (message: string) => void
): Promise<void>;

undefined here does not seem to be an optional value in tpyescript. Should it be possible to do this:graceNotes?: MidiGracePitches