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