@stringsync/vexml
Version:
MusicXML to Vexflow
11 lines (10 loc) • 326 B
TypeScript
import { NamedElement } from '../util';
/**
* The `<stopped>` element represents the stopped symbol, which looks like a plus sign.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/stopped/
*/
export declare class Stopped {
private element;
constructor(element: NamedElement<'stopped'>);
}