@stringsync/vexml
Version:
MusicXML to Vexflow
13 lines (12 loc) • 438 B
TypeScript
import { NamedElement } from '../util';
/**
* The `<tremolo>` element can be used to indicate single-note, double-note, or unmeasured tremolos.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/tremolo/
*/
export declare class Tremolo {
private element;
constructor(element: NamedElement<'tremolo'>);
/** Returns the number of tremolo marks. Defaults to 0. */
getTremoloMarksCount(): number;
}