@stringsync/vexml
Version:
MusicXML to Vexflow
16 lines (15 loc) • 583 B
TypeScript
import { NamedElement } from '../util';
/**
* The `<string>` element is used with tablature notation, regular notation (where it is often circled), and chord
* diagrams. String numbers start with 1 for the highest pitched full-length string.
*
* NOTE: TabString is used to not conflict with the String type.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/string/
*/
export declare class TabString {
private element;
constructor(element: NamedElement<'string'>);
/** Returns the number of the string. */
getNumber(): number | null;
}