/**
* 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 class OpenString {
element;
constructor(element) {
this.element = element;
}
}