UNPKG

osmd-extended

Version:

Private / sponsor exclusive OSMD mirror/audio player.

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>; }