@stringsync/vexml
Version:
MusicXML to Vexflow
15 lines (14 loc) • 558 B
TypeScript
import { NamedElement } from '../util';
/**
* The <symbol> element specifies a musical symbol using a canonical SMuFL glyph name.
*
* `Symbol` is part of the standard library in JavaScript, so we resort to `Symbolic` instead.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/symbol/
*/
export declare class Symbolic {
private element;
constructor(element: NamedElement<'symbol'>);
/** Returns a specific Standard Music Font Layout (SMuFL) character. Defaults to empty string. */
getSmulfGlyphName(): string;
}