@stringsync/vexml
Version:
MusicXML to Vexflow
16 lines (15 loc) • 534 B
TypeScript
import { NamedElement } from '../util';
import { StartStopContinue } from './enums';
/**
* Wavy lines are one way to indicate trills and vibrato.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/wavy-line/.
*/
export declare class WavyLine {
private element;
constructor(element: NamedElement<'wavy-line'>);
/** Returns the number of the wavy line. Defaults to 1. */
getNumber(): number;
/** Returns the type of the wavy line. Defaults to start. */
getType(): StartStopContinue;
}