@stringsync/vexml
Version:
MusicXML to Vexflow
11 lines (10 loc) • 327 B
TypeScript
import { NamedElement } from '../util';
/**
* The `<open-string>` element represents the zero-shaped open string symbol.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/open-string/
*/
export declare class OpenString {
private element;
constructor(element: NamedElement<'open-string'>);
}