@stringsync/vexml
Version:
MusicXML to Vexflow
14 lines (13 loc) • 459 B
TypeScript
import { NamedElement } from '../util';
import { DynamicType } from './enums';
/**
* Dynamics can be associated either with a note or a general musical direction.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/dynamics/
*/
export declare class Dynamics {
private element;
constructor(element: NamedElement<'dynamics'>);
/** Returns the dynamic types associated with this element. */
getTypes(): DynamicType[];
}