UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

16 lines (15 loc) 528 B
import { NamedElement } from '../util'; import { StartStop } from './enums'; /** * The `<pull-off>` element is used in guitar and fretted instrument notation. * * See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/pull-off/ */ export declare class PullOff { private element; constructor(element: NamedElement<'pull-off'>); /** Returns the number of the pull-off. Defaults to null;. */ getNumber(): number | null; /** Returns the type of pull-off. */ getType(): StartStop | null; }