UNPKG

orpheus-osmd

Version:

An open source JavaScript engine for displaying MusicXML based on VexFlow.

13 lines (12 loc) 311 B
import { Promise } from "es6-promise"; /** * Class with helper methods to handle asynchronous JavaScript requests */ export declare class AJAX { /** * Retrieve the content of the file at url * @param url * @returns {any} */ static ajax(url: string): Promise<string>; }