From 22a25ded9f7d9c9a96cce8d1bc12475ca0434201 Mon Sep 17 00:00:00 2001 From: Minteck Date: Wed, 9 Feb 2022 17:58:07 +0100 Subject: Major update --- node_modules/genius-lyrics/dist/Constants.d.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 node_modules/genius-lyrics/dist/Constants.d.ts (limited to 'node_modules/genius-lyrics/dist/Constants.d.ts') diff --git a/node_modules/genius-lyrics/dist/Constants.d.ts b/node_modules/genius-lyrics/dist/Constants.d.ts new file mode 100644 index 0000000..b43012d --- /dev/null +++ b/node_modules/genius-lyrics/dist/Constants.d.ts @@ -0,0 +1,20 @@ +import { OptionsOfTextResponseBody } from "got"; +export interface Config { + requestOptions?: Omit; + 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; +}; -- cgit