aboutsummaryrefslogtreecommitdiff
path: root/node_modules/genius-lyrics/dist/Client.d.ts
blob: c22064aebe3b8b4f874c4c37a6aab66b7e2547ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Config } from "./Constants";
import { Requester } from "./Requester";
import { ArtistsClient } from "./Artists/Client";
import { SongsClient } from "./Songs/Client";
export declare class Client {
    readonly key?: string | undefined;
    readonly config: Config;
    songs: SongsClient;
    artists: ArtistsClient;
    api: Requester;
    constructor(key?: string | undefined, config?: Config);
}