@stringsync/vexml
Version:
MusicXML to Vexflow
11 lines (10 loc) • 303 B
TypeScript
import { NamedElement } from '../util';
/**
* The `<turn>` element is the normal turn shape which goes up then down.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/turn/
*/
export declare class Turn {
private element;
constructor(element: NamedElement<'turn'>);
}