diff options
author | Minteck <contact@minteck.org> | 2022-03-27 22:51:09 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-03-27 22:51:09 +0200 |
commit | 8fa0b98c66a4c26f12f9450e6dde77242c5dc008 (patch) | |
tree | f710f15dfa9402f3c8ed2b5fed210ce14513b073 /node_modules/genius-lyrics/dist/Songs/Song.d.ts | |
parent | 3b7a058fbd58b74f413720feb492bdb827993006 (diff) | |
download | youtoo-8fa0b98c66a4c26f12f9450e6dde77242c5dc008.tar.gz youtoo-8fa0b98c66a4c26f12f9450e6dde77242c5dc008.tar.bz2 youtoo-8fa0b98c66a4c26f12f9450e6dde77242c5dc008.zip |
Commit
Diffstat (limited to 'node_modules/genius-lyrics/dist/Songs/Song.d.ts')
-rw-r--r-- | node_modules/genius-lyrics/dist/Songs/Song.d.ts | 62 |
1 files changed, 31 insertions, 31 deletions
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<string>; - /** - * Fetches All Information about the Track and updates all the existing Properties (Requires Key) - * @example const NewSong = await Song.fetch(); - */ - fetch(): Promise<this>; - 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<string>;
+ /**
+ * Fetches All Information about the Track and updates all the existing Properties (Requires Key)
+ * @example const NewSong = await Song.fetch();
+ */
+ fetch(): Promise<this>;
+ removeChorus(lyrics: string): string;
+}
|