diff options
author | Minteck <contact@minteck.org> | 2022-02-09 17:58:07 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-02-09 17:58:07 +0100 |
commit | 22a25ded9f7d9c9a96cce8d1bc12475ca0434201 (patch) | |
tree | 0e33d0650fe58f41c00bbc4b8047956905766823 /node_modules/genius-lyrics/dist/index.js | |
parent | 8f54d903fb3470823a5e4d6ff4655de009836245 (diff) | |
download | youtoo-22a25ded9f7d9c9a96cce8d1bc12475ca0434201.tar.gz youtoo-22a25ded9f7d9c9a96cce8d1bc12475ca0434201.tar.bz2 youtoo-22a25ded9f7d9c9a96cce8d1bc12475ca0434201.zip |
Major update
Diffstat (limited to 'node_modules/genius-lyrics/dist/index.js')
-rw-r--r-- | node_modules/genius-lyrics/dist/index.js | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/node_modules/genius-lyrics/dist/index.js b/node_modules/genius-lyrics/dist/index.js new file mode 100644 index 0000000..e230919 --- /dev/null +++ b/node_modules/genius-lyrics/dist/index.js @@ -0,0 +1,51 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.version = exports.Utils = exports.Constants = exports.Album = exports.Artist = exports.Song = exports.ArtistsClient = exports.SongsClient = exports.Client = void 0; +const Client_1 = require("./Client"); +Object.defineProperty(exports, "Client", { enumerable: true, get: function () { return Client_1.Client; } }); +const Client_2 = require("./Songs/Client"); +Object.defineProperty(exports, "SongsClient", { enumerable: true, get: function () { return Client_2.SongsClient; } }); +const Client_3 = require("./Artists/Client"); +Object.defineProperty(exports, "ArtistsClient", { enumerable: true, get: function () { return Client_3.ArtistsClient; } }); +const Song_1 = require("./Songs/Song"); +Object.defineProperty(exports, "Song", { enumerable: true, get: function () { return Song_1.Song; } }); +const Artist_1 = require("./Artists/Artist"); +Object.defineProperty(exports, "Artist", { enumerable: true, get: function () { return Artist_1.Artist; } }); +const Album_1 = require("./Albums/Album"); +Object.defineProperty(exports, "Album", { enumerable: true, get: function () { return Album_1.Album; } }); +const Constants_1 = require("./Constants"); +Object.defineProperty(exports, "Constants", { enumerable: true, get: function () { return Constants_1.Constants; } }); +const Utils = __importStar(require("./Utils")); +exports.Utils = Utils; +const version = require("../package.json").version; +exports.version = version; +exports.default = { + Client: Client_1.Client, + SongsClient: Client_2.SongsClient, + ArtistsClient: Client_3.ArtistsClient, + Song: Song_1.Song, + Artist: Artist_1.Artist, + Album: Album_1.Album, + Constants: Constants_1.Constants, + Utils, + version, +}; |