UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

15 lines (14 loc) 525 B
import { NamedElement } from '../util'; import { AboveBelow } from './enums'; /** * The `<down-bow>` element represents the symbol that is used both for down-bowing on bowed instruments, and * down-stroke on plucked instruments. * * See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/down-bow/ */ export declare class DownBow { private element; constructor(element: NamedElement<'down-bow'>); /** Returns the placement of the upbow. Defaults to above. */ getPlacement(): AboveBelow; }