UNPKG

opensheetmusicdisplay

Version:

An open source JavaScript engine for displaying MusicXML based on VexFlow.

9 lines (8 loc) 189 B
/** * Represent the size of a 2D object, with (width, height) */ export declare class SizeF2D { width: number; height: number; constructor(width?: number, height?: number); }