UNPKG

@eidoriantan/seratolibraryparser

Version:

Helps parsing serato DJ libraries for node.js based applications.

12 lines (11 loc) 430 B
import { Song } from './historyReader'; /** * Gets all songs of the iTunesLibrary file * @param {string} path path to `iTunes Music Library.xml` */ export declare function getITunesSongs(path: string): Promise<Song[]>; /** * Returns the default path to the iTunes Music Library.xml of the user * @returns {string} path to iTunes Music Library.xml */ export declare function getDefaultITunesLibraryPath(): string;