UNPKG

osmd-audio-player

Version:
16 lines (13 loc) 262 B
export enum ArticulationStyle { None, Staccato, Legato } export interface NotePlaybackStyle { articulation: ArticulationStyle; } export interface NotePlaybackInstruction extends NotePlaybackStyle { note: number; gain: number; duration: number; }