diff options
Diffstat (limited to 'node_modules/genius-lyrics/dist/Client.d.ts')
-rw-r--r-- | node_modules/genius-lyrics/dist/Client.d.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/node_modules/genius-lyrics/dist/Client.d.ts b/node_modules/genius-lyrics/dist/Client.d.ts new file mode 100644 index 0000000..c22064a --- /dev/null +++ b/node_modules/genius-lyrics/dist/Client.d.ts @@ -0,0 +1,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); +} |