@stringsync/vexml
Version:
MusicXML to Vexflow
14 lines (13 loc) • 454 B
TypeScript
import { NamedElement } from '../util';
/**
* The `<rehearsal>` element specifies letters, numbers, and section names that are notated in the score for reference
* during rehearsal.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/rehearsal/
*/
export declare class Rehearsal {
private element;
constructor(element: NamedElement<'rehearsal'>);
/** Returns the content of the element. */
getText(): string;
}