@stringsync/vexml
Version:
MusicXML to Vexflow
15 lines (14 loc) • 566 B
TypeScript
import { NamedElement } from '../util';
/**
* The `<rootfile>` element describes each top-level file in the MusicXML container.
*
* See https://www.w3.org/2021/06/musicxml40/container-reference/elements/rootfile/.
*/
export declare class Rootfile {
private element;
constructor(element: NamedElement<'rootfile'>);
/** Returns the full path of the root file. Defaults to empty string. */
getFullPath(): string;
/** Returns the media type of the root file. Defaults to 'application/vnd.recordare.musicxml+xml'. */
getMediaType(): string;
}