Playback Functions
Simple way to play music document is by calling play() on document.
doc.play();
More playback functions are available with MPlayer class.
import * as Score from "web-music-score/score";
const player = new Score.MPlayer(doc);
player.play(); // Start playback
player.pause(); // Pause playback
player.stop(); // Stop playback