Interface LyricsConfig

interface LyricsConfig {
    sources: {
        lavalink: boolean;
        lrclib: boolean;
        musixmatch: boolean;
        genius: boolean;
    };
    apiKeys?: {
        musixmatch?: string;
        genius?: string;
    };
}

Properties

Properties

sources: {
    lavalink: boolean;
    lrclib: boolean;
    musixmatch: boolean;
    genius: boolean;
}

Type declaration

  • lavalink: boolean
  • lrclib: boolean
  • musixmatch: boolean
  • genius: boolean
apiKeys?: {
    musixmatch?: string;
    genius?: string;
}

Type declaration

  • Optional musixmatch?: string
  • Optional genius?: string