diff options
Diffstat (limited to 'node_modules/genius-lyrics/dist/Constants.d.ts')
-rw-r--r-- | node_modules/genius-lyrics/dist/Constants.d.ts | 20 |
1 files changed, 20 insertions, 0 deletions
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<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; +}; |