aboutsummaryrefslogtreecommitdiff
path: root/node_modules/genius-lyrics/dist/Constants.d.ts
blob: b43012dd3a7d9acba0ef847eccb1169713d89bed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { OptionsOfTextResponseBody } from "got";
export interface Config {
    requestOptions?: Omit<OptionsOfTextResponseBody, "responseType">;
    origin?: {
        api?: string;
        url?: string;
    };
}
export declare const Constants: {
    BASE_URL: string;
    UN_BASE_URL: string;
    ARTIST_SORTS: string[];
    DEF_USER_AGENT: string;
    REQUIRES_KEY: string;
    INV_RES_OBJ: string;
    INV_CONFIG_OBJ: string;
    INV_TOKEN: string;
    NO_RESULT: string;
    ERR_W_MSG: (err: any, msg: any) => string;
};