From 8fa0b98c66a4c26f12f9450e6dde77242c5dc008 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 27 Mar 2022 22:51:09 +0200 Subject: Commit --- .../genius-lyrics/dist/Artists/Artist.d.ts | 70 +++++++++++----------- 1 file changed, 35 insertions(+), 35 deletions(-) (limited to 'node_modules/genius-lyrics/dist/Artists/Artist.d.ts') diff --git a/node_modules/genius-lyrics/dist/Artists/Artist.d.ts b/node_modules/genius-lyrics/dist/Artists/Artist.d.ts index 34928e7..5d6593a 100644 --- a/node_modules/genius-lyrics/dist/Artists/Artist.d.ts +++ b/node_modules/genius-lyrics/dist/Artists/Artist.d.ts @@ -1,35 +1,35 @@ -import { Client } from "../Client"; -export declare class Artist { - readonly client: Client; - partial: boolean; - name: string; - id: number; - url: string; - thumbnail: string; - image: string; - iq: number; - verified: { - normal: boolean; - meme: boolean; - }; - socialmedia: { - facebook?: string; - twitter?: string; - }; - raw: any; - constructor(client: Client, res: any, partial?: boolean); - /** - * Fetches the songs of the Artist (Requires Key) - * @example const Songs = await Artist.songs(); - */ - songs(options?: { - sort?: string; - page?: number; - per_page?: number; - }): Promise; - /** - * Fetches All Information about the Artist and updates all the existing Properties (Requires Key) - * @example const NewArtist = await Artist.fetch(); - */ - fetch(): Promise; -} +import { Client } from "../Client"; +export declare class Artist { + readonly client: Client; + partial: boolean; + name: string; + id: number; + url: string; + thumbnail: string; + image: string; + iq: number; + verified: { + normal: boolean; + meme: boolean; + }; + socialmedia: { + facebook?: string; + twitter?: string; + }; + raw: any; + constructor(client: Client, res: any, partial?: boolean); + /** + * Fetches the songs of the Artist (Requires Key) + * @example const Songs = await Artist.songs(); + */ + songs(options?: { + sort?: string; + page?: number; + per_page?: number; + }): Promise; + /** + * Fetches All Information about the Artist and updates all the existing Properties (Requires Key) + * @example const NewArtist = await Artist.fetch(); + */ + fetch(): Promise; +} -- cgit