blob: c9b42a9c10678590c9eeb6bdc9178397e9318364 (
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);
}
|