UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

10 lines (9 loc) 257 B
/** Represents a point in 2D space. */ export declare class Point { readonly x: number; readonly y: number; constructor(x: number, y: number); static origin(): Point; distance(other: Point): number; isEqual(other: Point): boolean; }