UNPKG

opensheetmusicdisplay

Version:

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

12 lines (11 loc) 278 B
/** * 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, timeout?: number): Promise<string>; }