UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

17 lines (16 loc) 460 B
import * as data from '../../data'; import * as musicxml from '../../musicxml'; import { Config } from '../../config'; import { Logger } from '../../debug'; export declare class TabPosition { private config; private log; private fret; private string; private harmonic; private constructor(); static create(config: Config, log: Logger, musicXML: { note: musicxml.Note; }): TabPosition[]; parse(): data.TabPosition; }