@stringsync/vexml
Version:
MusicXML to Vexflow
15 lines (14 loc) • 615 B
TypeScript
import { NamedElement } from '../util';
import { AccidentalType } from './enums';
/**
* An `<accidental-mark>` element can be used as a separate notation or as part of an ornament. When used in an
* ornament, position and placement are relative to the ornament, not relative to the note.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/accidental-mark/
*/
export declare class AccidentalMark {
private element;
constructor(element: NamedElement<'accidental-mark'>);
/** Returns the type of the accidental mark. Defaults to null. */
getType(): AccidentalType | null;
}