From 8fa0b98c66a4c26f12f9450e6dde77242c5dc008 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 27 Mar 2022 22:51:09 +0200 Subject: Commit --- node_modules/genius-lyrics/dist/Songs/Song.d.ts | 62 ++++++++++++------------- 1 file changed, 31 insertions(+), 31 deletions(-) (limited to 'node_modules/genius-lyrics/dist/Songs/Song.d.ts') diff --git a/node_modules/genius-lyrics/dist/Songs/Song.d.ts b/node_modules/genius-lyrics/dist/Songs/Song.d.ts index 8e51887..54cef31 100644 --- a/node_modules/genius-lyrics/dist/Songs/Song.d.ts +++ b/node_modules/genius-lyrics/dist/Songs/Song.d.ts @@ -1,31 +1,31 @@ -import { Client } from "../Client"; -import { Album } from "../Albums/Album"; -import { Artist } from "../Artists/Artist"; -export declare class Song { - readonly client: Client; - partial: boolean; - title: string; - fullTitle: string; - featuredTitle: string; - id: number; - thumbnail: string; - image: string; - url: string; - endpoint: string; - artist: Artist; - album?: Album; - releasedAt?: Date; - raw: any; - constructor(client: Client, res: any, partial?: boolean); - /** - * Fetches Lyrics of the Track - * @example const Lyrics = await Song.lyrics(true); - */ - lyrics(removeChorus?: boolean): Promise; - /** - * Fetches All Information about the Track and updates all the existing Properties (Requires Key) - * @example const NewSong = await Song.fetch(); - */ - fetch(): Promise; - removeChorus(lyrics: string): string; -} +import { Client } from "../Client"; +import { Album } from "../Albums/Album"; +import { Artist } from "../Artists/Artist"; +export declare class Song { + readonly client: Client; + partial: boolean; + title: string; + fullTitle: string; + featuredTitle: string; + id: number; + thumbnail: string; + image: string; + url: string; + endpoint: string; + artist: Artist; + album?: Album; + releasedAt?: Date; + raw: any; + constructor(client: Client, res: any, partial?: boolean); + /** + * Fetches Lyrics of the Track + * @example const Lyrics = await Song.lyrics(true); + */ + lyrics(removeChorus?: boolean): Promise; + /** + * Fetches All Information about the Track and updates all the existing Properties (Requires Key) + * @example const NewSong = await Song.fetch(); + */ + fetch(): Promise; + removeChorus(lyrics: string): string; +} -- cgit