UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

13 lines (12 loc) 374 B
import { NamedElement } from '../util'; /** * The `<tap>` element indicates a tap on the fretboard. * * See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/technical/ */ export declare class Tap { private element; constructor(element: NamedElement<'tap'>); /** Returns the symbol for the tap. Defaults to 'T'. */ getSymbol(): string; }