[
  {
    "path": ".babelrc",
    "content": "{\n    \"presets\": [\"@babel/preset-env\"],\n    \"plugins\": [\n        \"@babel/plugin-transform-runtime\"\n    ]\n}"
  },
  {
    "path": ".eslintrc.js",
    "content": "module.exports = {\n  env: {\n    es2020: true,\n    node: true,\n    'jest/globals': true\n  },\n  extends: [\n    'standard'\n  ],\n  parser: '@typescript-eslint/parser',\n  parserOptions: {\n    ecmaVersion: 11,\n    sourceType: 'module'\n  },\n  plugins: [\n    '@typescript-eslint',\n    'jest'\n  ],\n  rules: {\n    'no-unused-vars': 'off'\n  }\n}\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where the package manifests are located.\n# Please see the documentation for all configuration options:\n# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates\n\nversion: 2\nupdates:\n  - package-ecosystem: \"npm\" # See documentation for possible values\n    directory: \"/\" # Location of package manifests\n    schedule:\n      interval: \"daily\"\n    allow:\n      - dependency-name: \"axios\"\n      - dependency-name: \"m3u8stream\"\n      - dependency-name: \"typescript\"\n      - dependency-name: \"soundcloud-key-fetch\"\n      - dependency-name: \"typedoc\"\n      - dependency-name: \"jest\"\n"
  },
  {
    "path": ".github/workflows/node.js.yml",
    "content": "# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node\n# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions\n\nname: Node.js CI\n\non:\n  push:\n    branches: [ master ]\n    paths-ignore:\n      - README.md\n      - .github/\n      - package.json\n  pull_request:\n    branches: [ master ]\n\njobs:\n  build:\n\n    runs-on: ubuntu-latest\n\n    strategy:\n      matrix:\n        node-version: [10.x, 12.x, 14.x]\n\n    env:\n      SAVE_CLIENT_ID: \"true\"\n\n    steps:\n    - uses: actions/checkout@v2\n    - name: Use Node.js ${{ matrix.node-version }}\n      uses: actions/setup-node@v1\n      with:\n        node-version: ${{ matrix.node-version }}\n    - run: npm ci\n    - run: npm run build --if-present\n    - run: npm test\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\nnode_modules/\nclient_id.env\n.env\nclient_id.json\n"
  },
  {
    "path": ".npmignore",
    "content": ".github/\ndocs/\nimg/\nexample/\ntests/\npublish.sh\njest.config.js\njest.setup.js\npublish.sh\n.eslintrc.js\n.babelrc"
  },
  {
    "path": "LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2021 Zack Radisic\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "![node-soundcloud-downloader](https://socialify.git.ci/zackradisic/node-soundcloud-downloader/image?font=Raleway&language=1&owner=1&stargazers=1&theme=Dark)\n\n\n[![Zack Radisic](https://img.shields.io/badge/Author-Zack%20Radisic-green)](https://github.com/zackradisic)\n[![downloads](https://img.shields.io/npm/dt/soundcloud-downloader)](https://www.npmjs.com/package/soundcloud-downloader)\n![Node.js CI](https://github.com/zackradisic/node-soundcloud-downloader/workflows/Node.js%20CI/badge.svg)\n\n\nDownload Soundcloud tracks with Node.js\n```\nnpm install soundcloud-downloader\n```\n\nI couldn't find any packages that worked with a Discord bot I was working on so I created my own.\n\n#### Features\n- Extremely fast (interacts directly with the Soundcloud API)\n- Download/manipulate audio from Soundcloud (it is returned as a [stream](https://nodejs.org/api/stream.html))\n- Get information about [tracks](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#getinfo) and [playlists](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#getsetinfo)\n- [Filter](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#filtermedia) and [download](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#downloadformat) specific formats\n- [Search](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#search) and find [related](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#related) tracks/playlists/albums/users\n\n#### Table of Contents\n- [API](#api)\n- [Examples](#examples)\n- [Obtaining a Client ID](#client-id)\n- [To do](#to-do)\n\n## API / [Documentation](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html)\nHere are the two most commonly used functions:\n### [scdl.download(url, clientID?)](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#download)\n- Gets the audio from the given URL, returns a [ReadableStream](https://nodejs.org/api/stream.html#stream_class_stream_readable).\n\n### [scdl.getInfo(url, clientID?)](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#getinfo)\n- Returns a JSON object containing the track's information, as well as media links.\n\nRead the [docs](https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html) for more.\n\n## Examples\nThe easiest way to get Soundcloud audio is with the `scdl.download(url: string)` function, which returns a Promise containing a ReadableStream.\n```javascript\nconst scdl = require('soundcloud-downloader').default\nconst fs = require('fs')\n\nconst SOUNDCLOUD_URL = 'https://soundcloud.com/askdjfhaklshf'\nconst CLIENT_ID = 'asdhkalshdkhsf'\n\nscdl.download(SOUNDCLOUD_URL).then(stream => stream.pipe(fs.createWriteStream('audio.mp3')))\n```\n\nYou can do anything you like with the stream that is returned, an example with [Discord.js](https://github.com/discordjs/discord.js/):\n```javascript\nconst client = new Discord.Client()\nconst url = 'https://soundcloud.com/taliya-jenkins/double-cheese-burger-hold-the'\nconst clientID = 'asdlkajasd'\nconst channelID = '123456789'\nclient.on('ready', () => {\n  const channel = client.channels.cache.get(channelID)\n  channel.join().then(connection => {\n    scdl.download(url, clientID).then(stream => {\n      connection.play(stream)\n    })\n  })\n})\n```\n\nYou can also create a custom instance of the SCDL class with settings configured to your liking:\n```javascript\nconst scdlCreate = require('../').create\nconst axios = require('axios').default\n\nconst scdl = scdlCreate({\n  clientID: 'adasdasd',\n  saveClientID: true,\n  filePath: './client_id.json',\n  axiosInstance: axios.create()\n})\n```\n\nYou can view the code for these examples and find more in the [example](example) folder.\n\n\n## Client ID\nYou can obtain a Client ID by visting the Soundcloud website and inspecting network traffic (perhaps with Chrome DevTools or some HTTP proxy software) and looking for any requests to the Soundcloud API. Ex:\n```\nhttps://api-v2.soundcloud.com/me/play-history/tracks?client_id={CLIENT ID IS HERE}&limit=25&offset=0&linked_partitioning=1&app_version=1590494738&app_locale=en\n```\n\nHere is a picture of where you should be able to find it:\n![](img/clientid.png)\n\n## To-do\nIf I have the time and there is enough demand, I am interested in implementing the following functionalities:\n- Audio format selection ✅\n- Ability to use HTTP Live Streaming (HLS) ✅\n- Some more integrations with Discord.js like selecting best format for voice channels\n\nIf you have any feature requests, suggestions or questions do not hesistate to post them in the issues section\n\n## Disclaimer\nI do not support piracy and this package is not designed for circumventing the technological measures employed\nby SoundCloud preventing unauthorized access to copyrighted works. This package is only for downloading\naudio you have access to.\n"
  },
  {
    "path": "dist/axios.js",
    "content": "\"use strict\";\n/** @internal @packageDocumentation */\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nexports.__esModule = true;\nexports.axiosManager = void 0;\nvar axios_1 = __importDefault(require(\"axios\"));\nexports.axiosManager = {\n    instance: axios_1[\"default\"]\n};\n"
  },
  {
    "path": "dist/download-media.js",
    "content": "\"use strict\";\n/** @internal @packageDocumentation */\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nexports.__esModule = true;\nvar m3u8stream_1 = __importDefault(require(\"m3u8stream\"));\nvar protocols_1 = __importDefault(require(\"./protocols\"));\nvar util_1 = require(\"./util\");\nvar fromMedia = function (media, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var link, res, r, err_1;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                if (!validatemedia)\n                    throw new Error('Invalid media object provided');\n                _a.label = 1;\n            case 1:\n                _a.trys.push([1, 5, , 6]);\n                link = util_1.appendURL(media.url, 'client_id', clientID);\n                return [4 /*yield*/, axiosInstance.get(link, {\n                        headers: {\n                            'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',\n                            Accept: '*/*',\n                            'Accept-Encoding': 'gzip, deflate, br'\n                        },\n                        withCredentials: true\n                    })];\n            case 2:\n                res = _a.sent();\n                if (!res.data.url)\n                    throw new Error(\"Invalid response from Soundcloud. Check if the URL provided is correct: \" + link);\n                if (!(media.format.protocol === protocols_1[\"default\"].PROGRESSIVE)) return [3 /*break*/, 4];\n                return [4 /*yield*/, axiosInstance.get(res.data.url, {\n                        withCredentials: true,\n                        responseType: 'stream'\n                    })];\n            case 3:\n                r = _a.sent();\n                return [2 /*return*/, r.data];\n            case 4: return [2 /*return*/, m3u8stream_1[\"default\"](res.data.url)];\n            case 5:\n                err_1 = _a.sent();\n                throw util_1.handleRequestErrs(err_1);\n            case 6: return [2 /*return*/];\n        }\n    });\n}); };\nvar validatemedia = function (media) {\n    if (!media.url || !media.format)\n        return false;\n    return true;\n};\nexports[\"default\"] = fromMedia;\n"
  },
  {
    "path": "dist/download-playlist.js",
    "content": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nexports.__esModule = true;\nexports.downloadPlaylist = void 0;\nvar download_1 = require(\"./download\");\nvar info_1 = require(\"./info\");\nvar downloadPlaylist = function (url, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var info, trackNames, result;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0: return [4 /*yield*/, info_1.getSetInfo(url, clientID, axiosInstance)];\n            case 1:\n                info = _a.sent();\n                trackNames = [];\n                return [4 /*yield*/, Promise.all(info.tracks.map(function (track) {\n                        var p = download_1.download(track.permalink_url, clientID, axiosInstance);\n                        trackNames.push(track.title);\n                        return p;\n                    }))];\n            case 2:\n                result = _a.sent();\n                return [2 /*return*/, [result, trackNames]];\n        }\n    });\n}); };\nexports.downloadPlaylist = downloadPlaylist;\n"
  },
  {
    "path": "dist/download-url.js",
    "content": "\"use strict\";\n/** @internal @packageDocumentation */\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nexports.__esModule = true;\nvar m3u8stream_1 = __importDefault(require(\"m3u8stream\"));\nvar util_1 = require(\"./util\");\nvar fromURL = function (url, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var link, res, r, err_1;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                _a.trys.push([0, 4, , 5]);\n                link = util_1.appendURL(url, 'client_id', clientID);\n                return [4 /*yield*/, axiosInstance.get(link, {\n                        headers: {\n                            'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',\n                            Accept: '*/*',\n                            'Accept-Encoding': 'gzip, deflate, br'\n                        },\n                        withCredentials: true\n                    })];\n            case 1:\n                res = _a.sent();\n                if (!res.data.url)\n                    throw new Error(\"Invalid response from Soundcloud. Check if the URL provided is correct: \" + link);\n                if (!url.includes('/progressive')) return [3 /*break*/, 3];\n                return [4 /*yield*/, axiosInstance.get(res.data.url, {\n                        withCredentials: true,\n                        responseType: 'stream'\n                    })];\n            case 2:\n                r = _a.sent();\n                return [2 /*return*/, r.data];\n            case 3: return [2 /*return*/, m3u8stream_1[\"default\"](res.data.url)];\n            case 4:\n                err_1 = _a.sent();\n                throw util_1.handleRequestErrs(err_1);\n            case 5: return [2 /*return*/];\n        }\n    });\n}); };\nexports[\"default\"] = fromURL;\n"
  },
  {
    "path": "dist/download.js",
    "content": "\"use strict\";\n/** @internal @packageDocumentation */\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nexports.__esModule = true;\nexports.download = exports.fromDownloadLink = exports.fromMediaObj = exports.fromMediaObjBase = exports.fromURL = exports.fromURLBase = exports.getHLSStream = exports.getProgressiveStream = exports.getMediaURL = void 0;\nvar m3u8stream_1 = __importDefault(require(\"m3u8stream\"));\nvar util_1 = require(\"./util\");\nvar info_1 = __importDefault(require(\"./info\"));\nvar getMediaURL = function (url, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var res;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0: return [4 /*yield*/, axiosInstance.get(util_1.appendURL(url, 'client_id', clientID), {\n                    headers: {\n                        'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',\n                        Accept: '*/*',\n                        'Accept-Encoding': 'gzip, deflate, br'\n                    },\n                    withCredentials: true\n                })];\n            case 1:\n                res = _a.sent();\n                if (!res.data.url)\n                    throw new Error(\"Invalid response from Soundcloud. Check if the URL provided is correct: \" + url);\n                return [2 /*return*/, res.data.url];\n        }\n    });\n}); };\nexports.getMediaURL = getMediaURL;\nvar getProgressiveStream = function (mediaUrl, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var r;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0: return [4 /*yield*/, axiosInstance.get(mediaUrl, {\n                    withCredentials: true,\n                    responseType: 'stream'\n                })];\n            case 1:\n                r = _a.sent();\n                return [2 /*return*/, r.data];\n        }\n    });\n}); };\nexports.getProgressiveStream = getProgressiveStream;\nvar getHLSStream = function (mediaUrl) { return m3u8stream_1[\"default\"](mediaUrl); };\nexports.getHLSStream = getHLSStream;\nvar fromURLBase = function (url, clientID, getMediaURLFunction, getProgressiveStreamFunction, getHLSStreamFunction, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var mediaUrl, err_1;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                _a.trys.push([0, 4, , 5]);\n                return [4 /*yield*/, getMediaURLFunction(url, clientID, axiosInstance)];\n            case 1:\n                mediaUrl = _a.sent();\n                if (!url.includes('/progressive')) return [3 /*break*/, 3];\n                return [4 /*yield*/, getProgressiveStreamFunction(mediaUrl, axiosInstance)];\n            case 2: return [2 /*return*/, _a.sent()];\n            case 3: return [2 /*return*/, getHLSStreamFunction(mediaUrl)];\n            case 4:\n                err_1 = _a.sent();\n                throw util_1.handleRequestErrs(err_1);\n            case 5: return [2 /*return*/];\n        }\n    });\n}); };\nexports.fromURLBase = fromURLBase;\nvar fromURL = function (url, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {\n    switch (_a.label) {\n        case 0: return [4 /*yield*/, exports.fromURLBase(url, clientID, exports.getMediaURL, exports.getProgressiveStream, exports.getHLSStream, axiosInstance)];\n        case 1: return [2 /*return*/, _a.sent()];\n    }\n}); }); };\nexports.fromURL = fromURL;\nvar fromMediaObjBase = function (media, clientID, getMediaURLFunction, getProgressiveStreamFunction, getHLSStreamFunction, fromURLFunction, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                if (!validatemedia(media))\n                    throw new Error('Invalid media object provided');\n                return [4 /*yield*/, fromURLFunction(media.url, clientID, axiosInstance)];\n            case 1: return [2 /*return*/, _a.sent()];\n        }\n    });\n}); };\nexports.fromMediaObjBase = fromMediaObjBase;\nvar fromMediaObj = function (media, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {\n    switch (_a.label) {\n        case 0: return [4 /*yield*/, exports.fromMediaObjBase(media, clientID, exports.getMediaURL, exports.getProgressiveStream, exports.getHLSStream, exports.fromURL, axiosInstance)];\n        case 1: return [2 /*return*/, _a.sent()];\n    }\n}); }); };\nexports.fromMediaObj = fromMediaObj;\nvar fromDownloadLink = function (id, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var redirectUri, data;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0: return [4 /*yield*/, axiosInstance.get(util_1.appendURL(\"https://api-v2.soundcloud.com/tracks/\" + id + \"/download\", 'client_id', clientID))];\n            case 1:\n                redirectUri = (_a.sent()).data.redirectUri;\n                return [4 /*yield*/, axiosInstance.get(redirectUri, {\n                        responseType: 'stream'\n                    })];\n            case 2:\n                data = (_a.sent()).data;\n                return [2 /*return*/, data];\n        }\n    });\n}); };\nexports.fromDownloadLink = fromDownloadLink;\n/** @internal */\nvar download = function (url, clientID, axiosInstance, useDownloadLink) {\n    if (useDownloadLink === void 0) { useDownloadLink = true; }\n    return __awaiter(void 0, void 0, void 0, function () {\n        var info, err_2;\n        return __generator(this, function (_a) {\n            switch (_a.label) {\n                case 0: return [4 /*yield*/, info_1[\"default\"](url, clientID, axiosInstance)];\n                case 1:\n                    info = _a.sent();\n                    if (!(info.downloadable && useDownloadLink)) return [3 /*break*/, 5];\n                    _a.label = 2;\n                case 2:\n                    _a.trys.push([2, 4, , 5]);\n                    return [4 /*yield*/, exports.fromDownloadLink(info.id, clientID, axiosInstance)];\n                case 3: return [2 /*return*/, _a.sent()];\n                case 4:\n                    err_2 = _a.sent();\n                    return [3 /*break*/, 5];\n                case 5: return [4 /*yield*/, exports.fromMediaObj(info.media.transcodings[0], clientID, axiosInstance)];\n                case 6: return [2 /*return*/, _a.sent()];\n            }\n        });\n    });\n};\nexports.download = download;\nvar validatemedia = function (media) {\n    if (!media.url || !media.format)\n        return false;\n    return true;\n};\n"
  },
  {
    "path": "dist/filter-media.js",
    "content": "\"use strict\";\nexports.__esModule = true;\n/** @internal */\nvar filterMedia = function (media, predicateObj) {\n    return media.filter(function (_a) {\n        var format = _a.format;\n        var match = false;\n        if (predicateObj.protocol)\n            match = format.protocol === predicateObj.protocol;\n        if (predicateObj.format)\n            match = format.mime_type === predicateObj.format;\n        return match;\n    });\n};\nexports[\"default\"] = filterMedia;\n"
  },
  {
    "path": "dist/formats.js",
    "content": "\"use strict\";\nexports.__esModule = true;\nexports._FORMATS = void 0;\n/**\n * Audio formats a track can be encoded in.\n */\nvar FORMATS;\n(function (FORMATS) {\n    FORMATS[\"MP3\"] = \"audio/mpeg\";\n    FORMATS[\"OPUS\"] = \"audio/ogg; codecs=\\\"opus\\\"\";\n})(FORMATS || (FORMATS = {}));\n/** @internal */\nexports._FORMATS = {\n    MP3: FORMATS.MP3,\n    OPUS: FORMATS.OPUS\n};\nexports[\"default\"] = FORMATS;\n"
  },
  {
    "path": "dist/index.js",
    "content": "\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n    if (k2 === undefined) k2 = k;\n    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n    if (k2 === undefined) k2 = k;\n    o[k2] = m[k];\n}));\nvar __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {\n    Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n}) : function(o, v) {\n    o[\"default\"] = v;\n});\nvar __importStar = (this && this.__importStar) || function (mod) {\n    if (mod && mod.__esModule) return mod;\n    var result = {};\n    if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n    __setModuleDefault(result, mod);\n    return result;\n};\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n    return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nexports.__esModule = true;\nexports.create = exports.SCDL = void 0;\nvar soundcloud_key_fetch_1 = __importDefault(require(\"soundcloud-key-fetch\"));\nvar info_1 = __importStar(require(\"./info\"));\nvar filter_media_1 = __importDefault(require(\"./filter-media\"));\nvar download_1 = require(\"./download\");\nvar url_1 = __importStar(require(\"./url\"));\nvar protocols_1 = require(\"./protocols\");\nvar formats_1 = require(\"./formats\");\nvar search_1 = require(\"./search\");\nvar download_playlist_1 = require(\"./download-playlist\");\nvar axios_1 = __importDefault(require(\"axios\"));\nvar path = __importStar(require(\"path\"));\nvar fs = __importStar(require(\"fs\"));\nvar likes_1 = require(\"./likes\");\nvar user_1 = require(\"./user\");\n/** @internal */\nvar downloadFormat = function (url, clientID, format, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var info, filtered;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0: return [4 /*yield*/, info_1[\"default\"](url, clientID, axiosInstance)];\n            case 1:\n                info = _a.sent();\n                filtered = filter_media_1[\"default\"](info.media.transcodings, { format: format });\n                if (filtered.length === 0)\n                    throw new Error(\"Could not find media with specified format: (\" + format + \")\");\n                return [4 /*yield*/, download_1.fromMediaObj(filtered[0], clientID, axiosInstance)];\n            case 2: return [2 /*return*/, _a.sent()];\n        }\n    });\n}); };\nvar SCDL = /** @class */ (function () {\n    function SCDL(options) {\n        this.saveClientID = process.env.SAVE_CLIENT_ID ? process.env.SAVE_CLIENT_ID.toLowerCase() === 'true' : false;\n        if (!options)\n            options = {};\n        if (options.saveClientID) {\n            this.saveClientID = options.saveClientID;\n            if (options.filePath)\n                this._filePath = options.filePath;\n        }\n        else {\n            if (options.clientID) {\n                this._clientID = options.clientID;\n            }\n        }\n        if (options.axiosInstance) {\n            this.setAxiosInstance(options.axiosInstance);\n        }\n        else {\n            this.setAxiosInstance(axios_1[\"default\"]);\n        }\n        if (!options.stripMobilePrefix)\n            options.stripMobilePrefix = true;\n        if (!options.convertFirebaseLinks)\n            options.convertFirebaseLinks = true;\n        this.stripMobilePrefix = options.stripMobilePrefix;\n        this.convertFirebaseLinks = options.convertFirebaseLinks;\n    }\n    /**\n     * Returns a media Transcoding that matches the given predicate object\n     * @param media - The Transcodings to filter\n     * @param predicateObj - The desired Transcoding object to match\n     * @returns An array of Transcodings that match the predicate object\n     */\n    SCDL.prototype.filterMedia = function (media, predicateObj) {\n        return filter_media_1[\"default\"](media, predicateObj);\n    };\n    /**\n     * Get the audio of a given track. It returns the first format found.\n     *\n     * @param url - The URL of the Soundcloud track\n     * @param useDirectLink - Whether or not to use the download link if the artist has set the track to be downloadable. This has erratic behaviour on some environments.\n     * @returns A ReadableStream containing the audio data\n    */\n    SCDL.prototype.download = function (url, useDirectLink) {\n        if (useDirectLink === void 0) { useDirectLink = true; }\n        return __awaiter(this, void 0, void 0, function () {\n            var _a, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        _a = download_1.download;\n                        return [4 /*yield*/, this.prepareURL(url)];\n                    case 1:\n                        _b = [_c.sent()];\n                        return [4 /*yield*/, this.getClientID()];\n                    case 2: return [2 /*return*/, _a.apply(void 0, _b.concat([_c.sent(), this.axios, useDirectLink]))];\n                }\n            });\n        });\n    };\n    /**\n     *  Get the audio of a given track with the specified format\n     * @param url - The URL of the Soundcloud track\n     * @param format - The desired format\n    */\n    SCDL.prototype.downloadFormat = function (url, format) {\n        return __awaiter(this, void 0, void 0, function () {\n            var _a, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        _a = downloadFormat;\n                        return [4 /*yield*/, this.prepareURL(url)];\n                    case 1:\n                        _b = [_c.sent()];\n                        return [4 /*yield*/, this.getClientID()];\n                    case 2: return [2 /*return*/, _a.apply(void 0, _b.concat([_c.sent(), format, this.axios]))];\n                }\n            });\n        });\n    };\n    /**\n     * Returns info about a given track.\n     * @param url - URL of the Soundcloud track\n     * @returns Info about the track\n    */\n    SCDL.prototype.getInfo = function (url) {\n        return __awaiter(this, void 0, void 0, function () {\n            var _a, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        _a = info_1[\"default\"];\n                        return [4 /*yield*/, this.prepareURL(url)];\n                    case 1:\n                        _b = [_c.sent()];\n                        return [4 /*yield*/, this.getClientID()];\n                    case 2: return [2 /*return*/, _a.apply(void 0, _b.concat([_c.sent(), this.axios]))];\n                }\n            });\n        });\n    };\n    /**\n     * Returns info about the given track(s) specified by ID.\n     * @param ids - The ID(s) of the tracks\n     * @returns Info about the track\n     */\n    SCDL.prototype.getTrackInfoByID = function (ids, playlistID, playlistSecretToken) {\n        return __awaiter(this, void 0, void 0, function () {\n            var _a;\n            return __generator(this, function (_b) {\n                switch (_b.label) {\n                    case 0:\n                        _a = info_1.getTrackInfoByID;\n                        return [4 /*yield*/, this.getClientID()];\n                    case 1: return [2 /*return*/, _a.apply(void 0, [_b.sent(), this.axios, ids, playlistID, playlistSecretToken])];\n                }\n            });\n        });\n    };\n    /**\n     * Returns info about the given set\n     * @param url - URL of the Soundcloud set\n     * @returns Info about the set\n     */\n    SCDL.prototype.getSetInfo = function (url) {\n        return __awaiter(this, void 0, void 0, function () {\n            var _a, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        _a = info_1.getSetInfo;\n                        return [4 /*yield*/, this.prepareURL(url)];\n                    case 1:\n                        _b = [_c.sent()];\n                        return [4 /*yield*/, this.getClientID()];\n                    case 2: return [2 /*return*/, _a.apply(void 0, _b.concat([_c.sent(), this.axios]))];\n                }\n            });\n        });\n    };\n    /**\n     * Searches for tracks/playlists for the given query\n     * @param options - The search option\n     * @returns SearchResponse\n     */\n    SCDL.prototype.search = function (options) {\n        return __awaiter(this, void 0, void 0, function () {\n            var _a, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        _a = search_1.search;\n                        _b = [options, this.axios];\n                        return [4 /*yield*/, this.getClientID()];\n                    case 1: return [2 /*return*/, _a.apply(void 0, _b.concat([_c.sent()]))];\n                }\n            });\n        });\n    };\n    /**\n     * Finds related tracks to the given track specified by ID\n     * @param id - The ID of the track\n     * @param limit - The number of results to return\n     * @param offset - Used for pagination, set to 0 if you will not use this feature.\n     */\n    SCDL.prototype.related = function (id, limit, offset) {\n        if (offset === void 0) { offset = 0; }\n        return __awaiter(this, void 0, void 0, function () {\n            var _a, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        _a = search_1.related;\n                        _b = [id, limit, offset, this.axios];\n                        return [4 /*yield*/, this.getClientID()];\n                    case 1: return [2 /*return*/, _a.apply(void 0, _b.concat([_c.sent()]))];\n                }\n            });\n        });\n    };\n    /**\n     * Returns the audio streams and titles of the tracks in the given playlist.\n     * @param url - The url of the playlist\n     */\n    SCDL.prototype.downloadPlaylist = function (url) {\n        return __awaiter(this, void 0, void 0, function () {\n            var _a, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        _a = download_playlist_1.downloadPlaylist;\n                        return [4 /*yield*/, this.prepareURL(url)];\n                    case 1:\n                        _b = [_c.sent()];\n                        return [4 /*yield*/, this.getClientID()];\n                    case 2: return [2 /*return*/, _a.apply(void 0, _b.concat([_c.sent(), this.axios]))];\n                }\n            });\n        });\n    };\n    /**\n     * Returns track information for a user's likes\n     * @param options - Can either be the profile URL of the user, or their ID\n     * @returns - An array of tracks\n     */\n    SCDL.prototype.getLikes = function (options) {\n        return __awaiter(this, void 0, void 0, function () {\n            var id, clientID, user, _a;\n            return __generator(this, function (_b) {\n                switch (_b.label) {\n                    case 0: return [4 /*yield*/, this.getClientID()];\n                    case 1:\n                        clientID = _b.sent();\n                        if (!options.id) return [3 /*break*/, 2];\n                        id = options.id;\n                        return [3 /*break*/, 8];\n                    case 2:\n                        if (!options.profileUrl) return [3 /*break*/, 5];\n                        _a = user_1.getUser;\n                        return [4 /*yield*/, this.prepareURL(options.profileUrl)];\n                    case 3: return [4 /*yield*/, _a.apply(void 0, [_b.sent(), clientID, this.axios])];\n                    case 4:\n                        user = _b.sent();\n                        id = user.id;\n                        return [3 /*break*/, 8];\n                    case 5:\n                        if (!options.nextHref) return [3 /*break*/, 7];\n                        return [4 /*yield*/, likes_1.getLikes(options, clientID, this.axios)];\n                    case 6: return [2 /*return*/, _b.sent()];\n                    case 7: throw new Error('options.id or options.profileURL must be provided.');\n                    case 8:\n                        options.id = id;\n                        return [2 /*return*/, likes_1.getLikes(options, clientID, this.axios)];\n                }\n            });\n        });\n    };\n    /**\n     * Returns information about a user\n     * @param url - The profile URL of the user\n     */\n    SCDL.prototype.getUser = function (url) {\n        return __awaiter(this, void 0, void 0, function () {\n            var _a, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        _a = user_1.getUser;\n                        return [4 /*yield*/, this.prepareURL(url)];\n                    case 1:\n                        _b = [_c.sent()];\n                        return [4 /*yield*/, this.getClientID()];\n                    case 2: return [2 /*return*/, _a.apply(void 0, _b.concat([_c.sent(), this.axios]))];\n                }\n            });\n        });\n    };\n    /**\n     * Sets the instance of Axios to use to make requests to SoundCloud API\n     * @param instance - An instance of Axios\n     */\n    SCDL.prototype.setAxiosInstance = function (instance) {\n        this.axios = instance;\n    };\n    /**\n     * Returns whether or not the given URL is a valid Soundcloud URL\n     * @param url - URL of the Soundcloud track\n    */\n    SCDL.prototype.isValidUrl = function (url) {\n        return url_1[\"default\"](url, this.convertFirebaseLinks, this.stripMobilePrefix);\n    };\n    /**\n     * Returns whether or not the given URL is a valid playlist SoundCloud URL\n     * @param url - The URL to check\n     */\n    SCDL.prototype.isPlaylistURL = function (url) {\n        return url_1.isPlaylistURL(url);\n    };\n    /**\n     * Returns true if the given URL is a personalized track URL. (of the form https://soundcloud.com/discover/sets/personalized-tracks::user-sdlkfjsldfljs:847104873)\n     * @param url - The URL to check\n     */\n    SCDL.prototype.isPersonalizedTrackURL = function (url) {\n        return url_1.isPersonalizedTrackURL(url);\n    };\n    /**\n     * Returns true if the given URL is a Firebase URL (of the form https://soundcloud.app.goo.gl/XXXXXXXX)\n     * @param url - The URL to check\n     */\n    SCDL.prototype.isFirebaseURL = function (url) {\n        return url_1.isFirebaseURL(url);\n    };\n    SCDL.prototype.getClientID = function () {\n        return __awaiter(this, void 0, void 0, function () {\n            return __generator(this, function (_a) {\n                switch (_a.label) {\n                    case 0:\n                        if (!!this._clientID) return [3 /*break*/, 2];\n                        return [4 /*yield*/, this.setClientID()];\n                    case 1:\n                        _a.sent();\n                        _a.label = 2;\n                    case 2: return [2 /*return*/, this._clientID];\n                }\n            });\n        });\n    };\n    /** @internal */\n    SCDL.prototype.setClientID = function (clientID) {\n        return __awaiter(this, void 0, void 0, function () {\n            var filename, c, _a, data, _b;\n            return __generator(this, function (_c) {\n                switch (_c.label) {\n                    case 0:\n                        if (!!clientID) return [3 /*break*/, 8];\n                        if (!!this._clientID) return [3 /*break*/, 7];\n                        if (!this.saveClientID) return [3 /*break*/, 5];\n                        filename = path.resolve(__dirname, this._filePath ? this._filePath : '../client_id.json');\n                        return [4 /*yield*/, this._getClientIDFromFile(filename)];\n                    case 1:\n                        c = _c.sent();\n                        if (!!c) return [3 /*break*/, 3];\n                        _a = this;\n                        return [4 /*yield*/, soundcloud_key_fetch_1[\"default\"].fetchKey()];\n                    case 2:\n                        _a._clientID = _c.sent();\n                        data = {\n                            clientID: this._clientID,\n                            date: new Date().toISOString()\n                        };\n                        fs.writeFile(filename, JSON.stringify(data), {}, function (err) {\n                            if (err)\n                                console.log('Failed to save client_id to file: ' + err);\n                        });\n                        return [3 /*break*/, 4];\n                    case 3:\n                        this._clientID = c;\n                        _c.label = 4;\n                    case 4: return [3 /*break*/, 7];\n                    case 5:\n                        _b = this;\n                        return [4 /*yield*/, soundcloud_key_fetch_1[\"default\"].fetchKey()];\n                    case 6:\n                        _b._clientID = _c.sent();\n                        _c.label = 7;\n                    case 7: return [2 /*return*/, this._clientID];\n                    case 8:\n                        this._clientID = clientID;\n                        return [2 /*return*/, clientID];\n                }\n            });\n        });\n    };\n    /** @internal */\n    SCDL.prototype._getClientIDFromFile = function (filename) {\n        return __awaiter(this, void 0, void 0, function () {\n            return __generator(this, function (_a) {\n                return [2 /*return*/, new Promise(function (resolve, reject) {\n                        if (!fs.existsSync(filename))\n                            return resolve('');\n                        fs.readFile(filename, 'utf8', function (err, data) {\n                            if (err)\n                                return reject(err);\n                            var c;\n                            try {\n                                c = JSON.parse(data);\n                            }\n                            catch (err) {\n                                return reject(err);\n                            }\n                            if (!c.date && !c.clientID)\n                                return reject(new Error(\"Property 'data' or 'clientID' missing from client_id.json\"));\n                            if (typeof c.clientID !== 'string')\n                                return reject(new Error(\"Property 'clientID' is not a string in client_id.json\"));\n                            if (typeof c.date !== 'string')\n                                return reject(new Error(\"Property 'date' is not a string in client_id.json\"));\n                            var d = new Date(c.date);\n                            if (Number.isNaN(d.getDay()))\n                                return reject(new Error(\"Invalid date object from 'date' in client_id.json\"));\n                            var dayMs = 60 * 60 * 24 * 1000;\n                            if (new Date().getTime() - d.getTime() >= dayMs) {\n                                // Older than a day, delete\n                                fs.unlink(filename, function (err) {\n                                    if (err)\n                                        console.log('Failed to delete client_id.json: ' + err);\n                                });\n                                return resolve('');\n                            }\n                            else {\n                                return resolve(c.clientID);\n                            }\n                        });\n                    })];\n            });\n        });\n    };\n    /**\n     * Prepares the given URL by stripping its mobile prefix (if this.stripMobilePrefix is true)\n     * and converting it to a regular URL (if this.convertFireBaseLinks is true.)\n     * @param url\n     */\n    SCDL.prototype.prepareURL = function (url) {\n        return __awaiter(this, void 0, void 0, function () {\n            return __generator(this, function (_a) {\n                switch (_a.label) {\n                    case 0:\n                        if (this.stripMobilePrefix)\n                            url = url_1.stripMobilePrefix(url);\n                        if (!this.convertFirebaseLinks) return [3 /*break*/, 2];\n                        if (!url_1.isFirebaseURL(url)) return [3 /*break*/, 2];\n                        return [4 /*yield*/, url_1.convertFirebaseURL(url, this.axios)];\n                    case 1:\n                        url = _a.sent();\n                        _a.label = 2;\n                    case 2: return [2 /*return*/, url];\n                }\n            });\n        });\n    };\n    return SCDL;\n}());\nexports.SCDL = SCDL;\n// SCDL instance with default configutarion\nvar scdl = new SCDL();\n// Creates an instance of SCDL with custom configuration\nvar create = function (options) { return new SCDL(options); };\nexports.create = create;\nscdl.STREAMING_PROTOCOLS = protocols_1._PROTOCOLS;\nscdl.FORMATS = formats_1._FORMATS;\nexports[\"default\"] = scdl;\n"
  },
  {
    "path": "dist/info.js",
    "content": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nvar __spreadArrays = (this && this.__spreadArrays) || function () {\n    for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n    for (var r = Array(s), k = 0, i = 0; i < il; i++)\n        for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n            r[k] = a[j];\n    return r;\n};\nexports.__esModule = true;\nexports.getTrackInfoByID = exports.getSetInfo = exports.getInfoBase = void 0;\nvar util_1 = require(\"./util\");\nvar getTrackInfoBase = function (clientID, axiosRef, ids, playlistID, playlistSecretToken) { return __awaiter(void 0, void 0, void 0, function () {\n    var url, data, err_1;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                url = util_1.appendURL('https://api-v2.soundcloud.com/tracks', 'ids', ids.join(','), 'client_id', clientID);\n                if (playlistID && playlistSecretToken) {\n                    url = util_1.appendURL(url, 'playlistId', '' + playlistID, 'playlistSecretToken', playlistSecretToken);\n                }\n                _a.label = 1;\n            case 1:\n                _a.trys.push([1, 3, , 4]);\n                return [4 /*yield*/, axiosRef.get(url)];\n            case 2:\n                data = (_a.sent()).data;\n                return [2 /*return*/, data];\n            case 3:\n                err_1 = _a.sent();\n                throw util_1.handleRequestErrs(err_1);\n            case 4: return [2 /*return*/];\n        }\n    });\n}); };\n/** @internal */\nvar getInfoBase = function (url, clientID, axiosRef) { return __awaiter(void 0, void 0, void 0, function () {\n    var res, err_2;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                _a.trys.push([0, 2, , 3]);\n                return [4 /*yield*/, axiosRef.get(util_1.appendURL('https://api-v2.soundcloud.com/resolve', 'url', url, 'client_id', clientID), {\n                        withCredentials: true\n                    })];\n            case 1:\n                res = _a.sent();\n                return [2 /*return*/, res.data];\n            case 2:\n                err_2 = _a.sent();\n                console.log(err_2);\n                throw util_1.handleRequestErrs(err_2);\n            case 3: return [2 /*return*/];\n        }\n    });\n}); };\nexports.getInfoBase = getInfoBase;\n/** @internal */\nvar getSetInfoBase = function (url, clientID, axiosRef) { return __awaiter(void 0, void 0, void 0, function () {\n    var setInfo, temp, playlistID, playlistSecretToken, incompleteTracks, completeTracks, ids, splitIds, x, x, i, promises, info_1, info;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0: return [4 /*yield*/, exports.getInfoBase(url, clientID, axiosRef)];\n            case 1:\n                setInfo = _a.sent();\n                temp = __spreadArrays(setInfo.tracks).map(function (track) { return track.id; });\n                playlistID = setInfo.id;\n                playlistSecretToken = setInfo.secret_token;\n                incompleteTracks = setInfo.tracks.filter(function (track) { return !track.title; });\n                if (incompleteTracks.length === 0) {\n                    return [2 /*return*/, setInfo];\n                }\n                completeTracks = setInfo.tracks.filter(function (track) { return track.title; });\n                ids = incompleteTracks.map(function (t) { return t.id; });\n                if (!(ids.length > 50)) return [3 /*break*/, 3];\n                splitIds = [];\n                for (x = 0; x <= Math.floor(ids.length / 50); x++) {\n                    splitIds.push([]);\n                }\n                for (x = 0; x < ids.length; x++) {\n                    i = Math.floor(x / 50);\n                    splitIds[i].push(ids[x]);\n                }\n                promises = splitIds.map(function (ids) { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {\n                    switch (_a.label) {\n                        case 0: return [4 /*yield*/, exports.getTrackInfoByID(clientID, axiosRef, ids, playlistID, playlistSecretToken)];\n                        case 1: return [2 /*return*/, _a.sent()];\n                    }\n                }); }); });\n                return [4 /*yield*/, Promise.all(promises)];\n            case 2:\n                info_1 = _a.sent();\n                setInfo.tracks = completeTracks.concat.apply(completeTracks, info_1);\n                setInfo.tracks = sortTracks(setInfo.tracks, temp);\n                return [2 /*return*/, setInfo];\n            case 3: return [4 /*yield*/, exports.getTrackInfoByID(clientID, axiosRef, ids, playlistID, playlistSecretToken)];\n            case 4:\n                info = _a.sent();\n                setInfo.tracks = completeTracks.concat(info);\n                setInfo.tracks = sortTracks(setInfo.tracks, temp);\n                return [2 /*return*/, setInfo];\n        }\n    });\n}); };\n/** @internal */\nvar sortTracks = function (tracks, ids) {\n    for (var i = 0; i < ids.length; i++) {\n        if (tracks[i].id !== ids[i]) {\n            for (var j = 0; j < tracks.length; j++) {\n                if (tracks[j].id === ids[i]) {\n                    var temp = tracks[i];\n                    tracks[i] = tracks[j];\n                    tracks[j] = temp;\n                }\n            }\n        }\n    }\n    return tracks;\n};\n/** @internal */\nvar getInfo = function (url, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var data, idString, id;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                if (!url.includes('https://soundcloud.com/discover/sets/personalized-tracks::')) return [3 /*break*/, 2];\n                idString = util_1.extractIDFromPersonalizedTrackURL(url);\n                if (!idString)\n                    throw new Error('Could not parse track ID from given URL: ' + url);\n                id = void 0;\n                try {\n                    id = parseInt(idString);\n                }\n                catch (err) {\n                    throw new Error('Could not parse track ID from given URL: ' + url);\n                }\n                return [4 /*yield*/, exports.getTrackInfoByID(clientID, axiosInstance, [id])];\n            case 1:\n                data = (_a.sent())[0];\n                if (!data)\n                    throw new Error('Could not find track with ID: ' + id);\n                return [3 /*break*/, 4];\n            case 2: return [4 /*yield*/, exports.getInfoBase(url, clientID, axiosInstance)];\n            case 3:\n                data = _a.sent();\n                _a.label = 4;\n            case 4:\n                if (!data.media)\n                    throw new Error('The given URL does not link to a Soundcloud track');\n                return [2 /*return*/, data];\n        }\n    });\n}); };\n/** @internal */\nvar getSetInfo = function (url, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var data;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0: return [4 /*yield*/, getSetInfoBase(url, clientID, axiosInstance)];\n            case 1:\n                data = _a.sent();\n                if (!data.tracks)\n                    throw new Error('The given URL does not link to a Soundcloud set');\n                return [2 /*return*/, data];\n        }\n    });\n}); };\nexports.getSetInfo = getSetInfo;\n/** @intenral */\nvar getTrackInfoByID = function (clientID, axiosInstance, ids, playlistID, playlistSecretToken) { return __awaiter(void 0, void 0, void 0, function () {\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0: return [4 /*yield*/, getTrackInfoBase(clientID, axiosInstance, ids, playlistID, playlistSecretToken)];\n            case 1: return [2 /*return*/, _a.sent()];\n        }\n    });\n}); };\nexports.getTrackInfoByID = getTrackInfoByID;\nexports[\"default\"] = getInfo;\n"
  },
  {
    "path": "dist/is-url.js",
    "content": "\"use strict\";\nexports.__esModule = true;\n/** @internal @packageDocumentation */\nvar regexp = /^https?:\\/\\/(soundcloud\\.com)\\/(.*)$/;\nvar isURL = function (url) {\n    if (!url.match(regexp))\n        return false;\n    return url.match(regexp) && url.match(regexp)[2];\n};\nexports[\"default\"] = isURL;\n"
  },
  {
    "path": "dist/likes.js",
    "content": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nexports.__esModule = true;\nexports.getLikes = void 0;\nvar util_1 = require(\"./util\");\nvar baseURL = 'https://api-v2.soundcloud.com/users/';\n/** @internal */\nvar getLikes = function (options, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var u, response, nextHref, data, query, url;\n    var _a;\n    return __generator(this, function (_b) {\n        switch (_b.label) {\n            case 0:\n                u = '';\n                if (!options.nextHref) {\n                    if (!options.limit)\n                        options.limit = -1;\n                    if (!options.offset)\n                        options.offset = 0;\n                    u = util_1.appendURL(\"https://api-v2.soundcloud.com/users/\" + options.id + \"/likes\", 'client_id', clientID, 'limit', '' + (options.limit === -1 ? 200 : options.limit), 'offset', '' + options.offset);\n                }\n                else {\n                    u = util_1.appendURL(options.nextHref, 'client_id', clientID);\n                }\n                nextHref = 'start';\n                _b.label = 1;\n            case 1:\n                if (!(nextHref && (options.limit > 0 || options.limit === -1))) return [3 /*break*/, 3];\n                return [4 /*yield*/, axiosInstance.get(u)];\n            case 2:\n                data = (_b.sent()).data;\n                query = data;\n                if (!query.collection)\n                    throw new Error('Invalid JSON response received');\n                if (query.collection.length === 0)\n                    return [2 /*return*/, data];\n                if (query.collection[0].kind !== 'like')\n                    throw util_1.kindMismatchError('like', query.collection[0].kind);\n                // Only add tracks (for now)\n                query.collection = query.collection.reduce(function (prev, curr) { return curr.track ? prev.concat(curr) : prev; }, []);\n                if (!response) {\n                    response = query;\n                }\n                else {\n                    (_a = response.collection).push.apply(_a, query.collection);\n                }\n                if (options.limit !== -1) {\n                    options.limit -= query.collection.length;\n                    // We have collected enough likes\n                    if (options.limit <= 0)\n                        return [3 /*break*/, 3];\n                }\n                nextHref = query.next_href;\n                if (nextHref) {\n                    if (options.limit !== -1) {\n                        url = new URL(nextHref);\n                        url.searchParams.set('limit', '' + options.limit);\n                        nextHref = url.toString();\n                    }\n                    u = util_1.appendURL(nextHref, 'client_id', clientID);\n                }\n                return [3 /*break*/, 1];\n            case 3: return [2 /*return*/, response];\n        }\n    });\n}); };\nexports.getLikes = getLikes;\n"
  },
  {
    "path": "dist/protocols.js",
    "content": "\"use strict\";\nexports.__esModule = true;\nexports._PROTOCOLS = void 0;\n/**\n * Soundcloud streams tracks using these protocols.\n */\nvar STREAMING_PROTOCOLS;\n(function (STREAMING_PROTOCOLS) {\n    STREAMING_PROTOCOLS[\"HLS\"] = \"hls\";\n    STREAMING_PROTOCOLS[\"PROGRESSIVE\"] = \"progressive\";\n})(STREAMING_PROTOCOLS || (STREAMING_PROTOCOLS = {}));\n/** @internal */\nexports._PROTOCOLS = {\n    HLS: STREAMING_PROTOCOLS.HLS,\n    PROGRESSIVE: STREAMING_PROTOCOLS.PROGRESSIVE\n};\nexports[\"default\"] = STREAMING_PROTOCOLS;\n"
  },
  {
    "path": "dist/search.js",
    "content": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nexports.__esModule = true;\nexports.related = exports.search = void 0;\nvar util_1 = require(\"./util\");\n/** @internal */\nvar baseURL = 'https://api-v2.soundcloud.com/search';\nvar validResourceTypes = ['tracks', 'users', 'albums', 'playlists', 'all'];\n/** @internal */\nvar search = function (options, axiosInstance, clientID) { return __awaiter(void 0, void 0, void 0, function () {\n    var url, data;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                url = '';\n                if (!options.limit)\n                    options.limit = 10;\n                if (!options.offset)\n                    options.offset = 0;\n                if (!options.resourceType)\n                    options.resourceType = 'tracks';\n                if (options.nextHref) {\n                    url = util_1.appendURL(options.nextHref, 'client_id', clientID);\n                }\n                else if (options.query) {\n                    if (!validResourceTypes.includes(options.resourceType))\n                        throw new Error(options.resourceType + \" is not one of \" + validResourceTypes.map(function (str) { return \"'\" + str + \"'\"; }).join(', '));\n                    url = util_1.appendURL(\"\" + baseURL + (options.resourceType === 'all' ? '' : \"/\" + options.resourceType), 'client_id', clientID, 'q', options.query, 'limit', '' + options.limit, 'offset', '' + options.offset);\n                }\n                else {\n                    throw new Error('One of options.query or options.nextHref is required');\n                }\n                return [4 /*yield*/, axiosInstance.get(url)];\n            case 1:\n                data = (_a.sent()).data;\n                return [2 /*return*/, data];\n        }\n    });\n}); };\nexports.search = search;\n/** @internal */\nvar related = function (id, limit, offset, axiosInstance, clientID) {\n    if (limit === void 0) { limit = 10; }\n    if (offset === void 0) { offset = 0; }\n    return __awaiter(void 0, void 0, void 0, function () {\n        var data;\n        return __generator(this, function (_a) {\n            switch (_a.label) {\n                case 0: return [4 /*yield*/, axiosInstance.get(util_1.appendURL(\"https://api-v2.soundcloud.com/tracks/\" + id + \"/related\", 'client_id', clientID, 'offset', '' + offset, 'limit', '' + limit))];\n                case 1:\n                    data = (_a.sent()).data;\n                    return [2 /*return*/, data];\n            }\n        });\n    });\n};\nexports.related = related;\n"
  },
  {
    "path": "dist/url.js",
    "content": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nexports.__esModule = true;\nexports.convertFirebaseURL = exports.isFirebaseURL = exports.stripMobilePrefix = exports.isPersonalizedTrackURL = exports.isPlaylistURL = void 0;\n/** @internal @packageDocumentation */\nvar regexp = /^https?:\\/\\/(soundcloud\\.com)\\/(.*)$/;\nvar mobileUrlRegex = /^https?:\\/\\/(m\\.soundcloud\\.com)\\/(.*)$/;\nvar firebaseUrlRegex = /^https?:\\/\\/(soundcloud\\.app\\.goo\\.gl)\\/(.*)$/;\nvar firebaseRegexp = /https?:\\/\\/(www\\.)?[-a-zA-Z0-9@:%._+~#=]{1,500}\\.[a-zA-Z0-9()]{1,500}\\b([-a-zA-Z0-9()@:%_+.~#?&//\\\\=]*)/g;\nvar isURL = function (url, testMobile, testFirebase) {\n    var success = false;\n    if (testMobile) {\n        if (url.match(mobileUrlRegex))\n            success = !!url.match(regexp)[2];\n    }\n    if (!success && testFirebase) {\n        if (url.match(firebaseRegexp))\n            success = !!url.match(firebaseRegexp)[2];\n    }\n    if (!success && url.match(regexp))\n        success = !!url.match(regexp)[2];\n    return success;\n};\nvar isPlaylistURL = function (url) {\n    if (!isURL(url))\n        return false;\n    try {\n        var u = new URL(url);\n        return u.pathname.includes('/sets/');\n    }\n    catch (err) {\n        return false;\n    }\n};\nexports.isPlaylistURL = isPlaylistURL;\nvar isPersonalizedTrackURL = function (url) {\n    if (!isURL(url))\n        return false;\n    return url.includes('https://soundcloud.com/discover/sets/personalized-tracks::');\n};\nexports.isPersonalizedTrackURL = isPersonalizedTrackURL;\nvar stripMobilePrefix = function (url) {\n    if (!url.includes('m.soundcloud.com'))\n        return url;\n    var _url = new URL(url);\n    _url.hostname = 'soundcloud.com';\n    return _url.toString();\n};\nexports.stripMobilePrefix = stripMobilePrefix;\nvar isFirebaseURL = function (url) {\n    return url.includes('https://soundcloud.app.goo.gl');\n};\nexports.isFirebaseURL = isFirebaseURL;\nvar convertFirebaseURL = function (url, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var _url, data, matches, firebaseURL;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                _url = new URL(url);\n                _url.searchParams.set('d', '1');\n                return [4 /*yield*/, axiosInstance.get(_url.toString())];\n            case 1:\n                data = (_a.sent()).data;\n                matches = data.match(firebaseRegexp);\n                if (!matches)\n                    throw new Error(\"Could not find URL for this SoundCloud Firebase URL: \" + url);\n                firebaseURL = matches.find(function (match) { return regexp.test(match); });\n                if (!firebaseURL)\n                    return [2 /*return*/, undefined\n                        // Some of the characters are in their unicode character code form (e.g. \\u003d),\n                        // use regex to find occurences of \\uXXXX, parse their hexidecimal unicode value and convert to regular char\n                    ];\n                // Some of the characters are in their unicode character code form (e.g. \\u003d),\n                // use regex to find occurences of \\uXXXX, parse their hexidecimal unicode value and convert to regular char\n                return [2 /*return*/, firebaseURL.replace(/\\\\u([\\d\\w]{4})/gi, function (_match, grp) { return String.fromCharCode(parseInt(grp, 16)); })];\n        }\n    });\n}); };\nexports.convertFirebaseURL = convertFirebaseURL;\nexports[\"default\"] = isURL;\n"
  },
  {
    "path": "dist/user.js",
    "content": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n    return new (P || (P = Promise))(function (resolve, reject) {\n        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n        function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n        step((generator = generator.apply(thisArg, _arguments || [])).next());\n    });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n    return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n    function verb(n) { return function (v) { return step([n, v]); }; }\n    function step(op) {\n        if (f) throw new TypeError(\"Generator is already executing.\");\n        while (_) try {\n            if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n            if (y = 0, t) op = [op[0] & 2, t.value];\n            switch (op[0]) {\n                case 0: case 1: t = op; break;\n                case 4: _.label++; return { value: op[1], done: false };\n                case 5: _.label++; y = op[1]; op = [0]; continue;\n                case 7: op = _.ops.pop(); _.trys.pop(); continue;\n                default:\n                    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n                    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n                    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n                    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n                    if (t[2]) _.ops.pop();\n                    _.trys.pop(); continue;\n            }\n            op = body.call(thisArg, _);\n        } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n        if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n    }\n};\nexports.__esModule = true;\nexports.getUser = void 0;\nvar util_1 = require(\"./util\");\n/** @internal */\nvar getUser = function (url, clientID, axiosInstance) { return __awaiter(void 0, void 0, void 0, function () {\n    var u, data;\n    return __generator(this, function (_a) {\n        switch (_a.label) {\n            case 0:\n                u = util_1.appendURL(util_1.resolveURL, 'url', url, 'client_id', clientID);\n                return [4 /*yield*/, axiosInstance.get(u)];\n            case 1:\n                data = (_a.sent()).data;\n                if (!data.avatar_url)\n                    throw new Error('JSON response is not a user. Is profile URL correct? : ' + url);\n                return [2 /*return*/, data];\n        }\n    });\n}); };\nexports.getUser = getUser;\n"
  },
  {
    "path": "dist/util.js",
    "content": "\"use strict\";\nexports.__esModule = true;\nexports.kindMismatchError = exports.extractIDFromPersonalizedTrackURL = exports.appendURL = exports.handleRequestErrs = exports.resolveURL = void 0;\n/** @internal @packageDocumentation */\nvar url_1 = require(\"url\");\nexports.resolveURL = 'https://api-v2.soundcloud.com/resolve';\nvar handleRequestErrs = function (err) {\n    if (!err.response)\n        return err;\n    if (!err.response.status)\n        return err;\n    if (err.response.status === 401)\n        err.message += ', is your Client ID correct?';\n    if (err.response.status === 404)\n        err.message += ', could not find the song... it may be private - check the URL';\n    return err;\n};\nexports.handleRequestErrs = handleRequestErrs;\nvar appendURL = function (url) {\n    var params = [];\n    for (var _i = 1; _i < arguments.length; _i++) {\n        params[_i - 1] = arguments[_i];\n    }\n    var u = new url_1.URL(url);\n    params.forEach(function (val, idx) {\n        if (idx % 2 === 0)\n            u.searchParams.append(val, params[idx + 1]);\n    });\n    return u.href;\n};\nexports.appendURL = appendURL;\nvar extractIDFromPersonalizedTrackURL = function (url) {\n    if (!url.includes('https://soundcloud.com/discover/sets/personalized-tracks::'))\n        return '';\n    var split = url.split(':');\n    if (split.length < 5)\n        return '';\n    return split[4];\n};\nexports.extractIDFromPersonalizedTrackURL = extractIDFromPersonalizedTrackURL;\nvar kindMismatchError = function (expected, received) { return new Error(\"Expected resouce of kind: (\" + expected + \"), received: (\" + received + \")\"); };\nexports.kindMismatchError = kindMismatchError;\n"
  },
  {
    "path": "docs/.nojekyll",
    "content": ""
  },
  {
    "path": "docs/assets/css/main.css",
    "content": "/*! normalize.css v1.1.3 | MIT License | git.io/normalize */\n/* ==========================================================================\n * * HTML5 display definitions\n * * ========================================================================== */\n/**\n * * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. */\narticle, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {\n  display: block;\n}\n\n/**\n * * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. */\naudio, canvas, video {\n  display: inline-block;\n  *display: inline;\n  *zoom: 1;\n}\n\n/**\n * * Prevent modern browsers from displaying `audio` without controls.\n * * Remove excess height in iOS 5 devices. */\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n/**\n * * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.\n * * Known issue: no IE 6 support. */\n[hidden] {\n  display: none;\n}\n\n/* ==========================================================================\n * * Base\n * * ========================================================================== */\n/**\n * * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using\n * *    `em` units.\n * * 2. Prevent iOS text size adjust after orientation change, without disabling\n * *    user zoom. */\nhtml {\n  font-size: 100%;\n  /* 1 */\n  -ms-text-size-adjust: 100%;\n  /* 2 */\n  -webkit-text-size-adjust: 100%;\n  /* 2 */\n  font-family: sans-serif;\n}\n\n/**\n * * Address `font-family` inconsistency between `textarea` and other form\n * * elements. */\nbutton, input, select, textarea {\n  font-family: sans-serif;\n}\n\n/**\n * * Address margins handled incorrectly in IE 6/7. */\nbody {\n  margin: 0;\n}\n\n/* ==========================================================================\n * * Links\n * * ========================================================================== */\n/**\n * * Address `outline` inconsistency between Chrome and other browsers. */\na:focus {\n  outline: thin dotted;\n}\na:active, a:hover {\n  outline: 0;\n}\n\n/**\n * * Improve readability when focused and also mouse hovered in all browsers. */\n/* ==========================================================================\n * * Typography\n * * ========================================================================== */\n/**\n * * Address font sizes and margins set differently in IE 6/7.\n * * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,\n * * and Chrome. */\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\nh2 {\n  font-size: 1.5em;\n  margin: 0.83em 0;\n}\n\nh3 {\n  font-size: 1.17em;\n  margin: 1em 0;\n}\n\nh4, .tsd-index-panel h3 {\n  font-size: 1em;\n  margin: 1.33em 0;\n}\n\nh5 {\n  font-size: 0.83em;\n  margin: 1.67em 0;\n}\n\nh6 {\n  font-size: 0.67em;\n  margin: 2.33em 0;\n}\n\n/**\n * * Address styling not present in IE 7/8/9, Safari 5, and Chrome. */\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n/**\n * * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. */\nb, strong {\n  font-weight: bold;\n}\n\nblockquote {\n  margin: 1em 40px;\n}\n\n/**\n * * Address styling not present in Safari 5 and Chrome. */\ndfn {\n  font-style: italic;\n}\n\n/**\n * * Address differences between Firefox and other browsers.\n * * Known issue: no IE 6/7 normalization. */\nhr {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n  height: 0;\n}\n\n/**\n * * Address styling not present in IE 6/7/8/9. */\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n/**\n * * Address margins set differently in IE 6/7. */\np, pre {\n  margin: 1em 0;\n}\n\n/**\n * * Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */\ncode, kbd, pre, samp {\n  font-family: monospace, serif;\n  _font-family: \"courier new\", monospace;\n  font-size: 1em;\n}\n\n/**\n * * Improve readability of pre-formatted text in all browsers. */\npre {\n  white-space: pre;\n  white-space: pre-wrap;\n  word-wrap: break-word;\n}\n\n/**\n * * Address CSS quotes not supported in IE 6/7. */\nq {\n  quotes: none;\n}\nq:before, q:after {\n  content: \"\";\n  content: none;\n}\n\n/**\n * * Address `quotes` property not supported in Safari 4. */\n/**\n * * Address inconsistent and variable font size in all browsers. */\nsmall {\n  font-size: 80%;\n}\n\n/**\n * * Prevent `sub` and `sup` affecting `line-height` in all browsers. */\nsub {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n/* ==========================================================================\n * * Lists\n * * ========================================================================== */\n/**\n * * Address margins set differently in IE 6/7. */\ndl, menu, ol, ul {\n  margin: 1em 0;\n}\n\ndd {\n  margin: 0 0 0 40px;\n}\n\n/**\n * * Address paddings set differently in IE 6/7. */\nmenu, ol, ul {\n  padding: 0 0 0 40px;\n}\n\n/**\n * * Correct list images handled incorrectly in IE 7. */\nnav ul, nav ol {\n  list-style: none;\n  list-style-image: none;\n}\n\n/* ==========================================================================\n * * Embedded content\n * * ========================================================================== */\n/**\n * * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.\n * * 2. Improve image quality when scaled in IE 7. */\nimg {\n  border: 0;\n  /* 1 */\n  -ms-interpolation-mode: bicubic;\n}\n\n/* 2 */\n/**\n * * Correct overflow displayed oddly in IE 9. */\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n/* ==========================================================================\n * * Figures\n * * ========================================================================== */\n/**\n * * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. */\nfigure, form {\n  margin: 0;\n}\n\n/* ==========================================================================\n * * Forms\n * * ========================================================================== */\n/**\n * * Correct margin displayed oddly in IE 6/7. */\n/**\n * * Define consistent border, margin, and padding. */\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n/**\n * * 1. Correct color not being inherited in IE 6/7/8/9.\n * * 2. Correct text not wrapping in Firefox 3.\n * * 3. Correct alignment displayed oddly in IE 6/7. */\nlegend {\n  border: 0;\n  /* 1 */\n  padding: 0;\n  white-space: normal;\n  /* 2 */\n  *margin-left: -7px;\n}\n\n/* 3 */\n/**\n * * 1. Correct font size not being inherited in all browsers.\n * * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,\n * *    and Chrome.\n * * 3. Improve appearance and consistency in all browsers. */\nbutton, input, select, textarea {\n  font-size: 100%;\n  /* 1 */\n  margin: 0;\n  /* 2 */\n  vertical-align: baseline;\n  /* 3 */\n  *vertical-align: middle;\n}\n\n/* 3 */\n/**\n * * Address Firefox 3+ setting `line-height` on `input` using `!important` in\n * * the UA stylesheet. */\nbutton, input {\n  line-height: normal;\n}\n\n/**\n * * Address inconsistent `text-transform` inheritance for `button` and `select`.\n * * All other form control elements do not inherit `text-transform` values.\n * * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.\n * * Correct `select` style inheritance in Firefox 4+ and Opera. */\nbutton, select {\n  text-transform: none;\n}\n\n/**\n * * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n * *    and `video` controls.\n * * 2. Correct inability to style clickable `input` types in iOS.\n * * 3. Improve usability and consistency of cursor style between image-type\n * *    `input` and others.\n * * 4. Remove inner spacing in IE 7 without affecting normal text inputs.\n * *    Known issue: inner spacing remains in IE 6. */\nbutton, html input[type=button] {\n  -webkit-appearance: button;\n  /* 2 */\n  cursor: pointer;\n  /* 3 */\n  *overflow: visible;\n}\n\n/* 4 */\ninput[type=reset], input[type=submit] {\n  -webkit-appearance: button;\n  /* 2 */\n  cursor: pointer;\n  /* 3 */\n  *overflow: visible;\n}\n\n/* 4 */\n/**\n * * Re-set default cursor for disabled elements. */\nbutton[disabled], html input[disabled] {\n  cursor: default;\n}\n\n/**\n * * 1. Address box sizing set to content-box in IE 8/9.\n * * 2. Remove excess padding in IE 8/9.\n * * 3. Remove excess padding in IE 7.\n * *    Known issue: excess padding remains in IE 6. */\ninput {\n  /* 3 */\n}\ninput[type=checkbox], input[type=radio] {\n  box-sizing: border-box;\n  /* 1 */\n  padding: 0;\n  /* 2 */\n  *height: 13px;\n  /* 3 */\n  *width: 13px;\n}\ninput[type=search] {\n  -webkit-appearance: textfield;\n  /* 1 */\n  -moz-box-sizing: content-box;\n  -webkit-box-sizing: content-box;\n  /* 2 */\n  box-sizing: content-box;\n}\ninput[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n * * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n * *    (include `-moz` to future-proof). */\n/**\n * * Remove inner padding and search cancel button in Safari 5 and Chrome\n * * on OS X. */\n/**\n * * Remove inner padding and border in Firefox 3+. */\nbutton::-moz-focus-inner, input::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n/**\n * * 1. Remove default vertical scrollbar in IE 6/7/8/9.\n * * 2. Improve readability and alignment in all browsers. */\ntextarea {\n  overflow: auto;\n  /* 1 */\n  vertical-align: top;\n}\n\n/* 2 */\n/* ==========================================================================\n * * Tables\n * * ========================================================================== */\n/**\n * * Remove most spacing between table cells. */\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\nul.tsd-descriptions > li > :first-child, .tsd-panel > :first-child, .col > :first-child, .col-11 > :first-child, .col-10 > :first-child, .col-9 > :first-child, .col-8 > :first-child, .col-7 > :first-child, .col-6 > :first-child, .col-5 > :first-child, .col-4 > :first-child, .col-3 > :first-child, .col-2 > :first-child, .col-1 > :first-child,\nul.tsd-descriptions > li > :first-child > :first-child,\n.tsd-panel > :first-child > :first-child,\n.col > :first-child > :first-child,\n.col-11 > :first-child > :first-child,\n.col-10 > :first-child > :first-child,\n.col-9 > :first-child > :first-child,\n.col-8 > :first-child > :first-child,\n.col-7 > :first-child > :first-child,\n.col-6 > :first-child > :first-child,\n.col-5 > :first-child > :first-child,\n.col-4 > :first-child > :first-child,\n.col-3 > :first-child > :first-child,\n.col-2 > :first-child > :first-child,\n.col-1 > :first-child > :first-child,\nul.tsd-descriptions > li > :first-child > :first-child > :first-child,\n.tsd-panel > :first-child > :first-child > :first-child,\n.col > :first-child > :first-child > :first-child,\n.col-11 > :first-child > :first-child > :first-child,\n.col-10 > :first-child > :first-child > :first-child,\n.col-9 > :first-child > :first-child > :first-child,\n.col-8 > :first-child > :first-child > :first-child,\n.col-7 > :first-child > :first-child > :first-child,\n.col-6 > :first-child > :first-child > :first-child,\n.col-5 > :first-child > :first-child > :first-child,\n.col-4 > :first-child > :first-child > :first-child,\n.col-3 > :first-child > :first-child > :first-child,\n.col-2 > :first-child > :first-child > :first-child,\n.col-1 > :first-child > :first-child > :first-child {\n  margin-top: 0;\n}\nul.tsd-descriptions > li > :last-child, .tsd-panel > :last-child, .col > :last-child, .col-11 > :last-child, .col-10 > :last-child, .col-9 > :last-child, .col-8 > :last-child, .col-7 > :last-child, .col-6 > :last-child, .col-5 > :last-child, .col-4 > :last-child, .col-3 > :last-child, .col-2 > :last-child, .col-1 > :last-child,\nul.tsd-descriptions > li > :last-child > :last-child,\n.tsd-panel > :last-child > :last-child,\n.col > :last-child > :last-child,\n.col-11 > :last-child > :last-child,\n.col-10 > :last-child > :last-child,\n.col-9 > :last-child > :last-child,\n.col-8 > :last-child > :last-child,\n.col-7 > :last-child > :last-child,\n.col-6 > :last-child > :last-child,\n.col-5 > :last-child > :last-child,\n.col-4 > :last-child > :last-child,\n.col-3 > :last-child > :last-child,\n.col-2 > :last-child > :last-child,\n.col-1 > :last-child > :last-child,\nul.tsd-descriptions > li > :last-child > :last-child > :last-child,\n.tsd-panel > :last-child > :last-child > :last-child,\n.col > :last-child > :last-child > :last-child,\n.col-11 > :last-child > :last-child > :last-child,\n.col-10 > :last-child > :last-child > :last-child,\n.col-9 > :last-child > :last-child > :last-child,\n.col-8 > :last-child > :last-child > :last-child,\n.col-7 > :last-child > :last-child > :last-child,\n.col-6 > :last-child > :last-child > :last-child,\n.col-5 > :last-child > :last-child > :last-child,\n.col-4 > :last-child > :last-child > :last-child,\n.col-3 > :last-child > :last-child > :last-child,\n.col-2 > :last-child > :last-child > :last-child,\n.col-1 > :last-child > :last-child > :last-child {\n  margin-bottom: 0;\n}\n\n.container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 40px;\n}\n@media (max-width: 640px) {\n  .container {\n    padding: 0 20px;\n  }\n}\n\n.container-main {\n  padding-bottom: 200px;\n}\n\n.row {\n  display: flex;\n  position: relative;\n  margin: 0 -10px;\n}\n.row:after {\n  visibility: hidden;\n  display: block;\n  content: \"\";\n  clear: both;\n  height: 0;\n}\n\n.col, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {\n  box-sizing: border-box;\n  float: left;\n  padding: 0 10px;\n}\n\n.col-1 {\n  width: 8.3333333333%;\n}\n\n.offset-1 {\n  margin-left: 8.3333333333%;\n}\n\n.col-2 {\n  width: 16.6666666667%;\n}\n\n.offset-2 {\n  margin-left: 16.6666666667%;\n}\n\n.col-3 {\n  width: 25%;\n}\n\n.offset-3 {\n  margin-left: 25%;\n}\n\n.col-4 {\n  width: 33.3333333333%;\n}\n\n.offset-4 {\n  margin-left: 33.3333333333%;\n}\n\n.col-5 {\n  width: 41.6666666667%;\n}\n\n.offset-5 {\n  margin-left: 41.6666666667%;\n}\n\n.col-6 {\n  width: 50%;\n}\n\n.offset-6 {\n  margin-left: 50%;\n}\n\n.col-7 {\n  width: 58.3333333333%;\n}\n\n.offset-7 {\n  margin-left: 58.3333333333%;\n}\n\n.col-8 {\n  width: 66.6666666667%;\n}\n\n.offset-8 {\n  margin-left: 66.6666666667%;\n}\n\n.col-9 {\n  width: 75%;\n}\n\n.offset-9 {\n  margin-left: 75%;\n}\n\n.col-10 {\n  width: 83.3333333333%;\n}\n\n.offset-10 {\n  margin-left: 83.3333333333%;\n}\n\n.col-11 {\n  width: 91.6666666667%;\n}\n\n.offset-11 {\n  margin-left: 91.6666666667%;\n}\n\n.tsd-kind-icon {\n  display: block;\n  position: relative;\n  padding-left: 20px;\n  text-indent: -20px;\n}\n.tsd-kind-icon:before {\n  content: \"\";\n  display: inline-block;\n  vertical-align: middle;\n  width: 17px;\n  height: 17px;\n  margin: 0 3px 2px 0;\n  background-image: url(../images/icons.png);\n}\n@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {\n  .tsd-kind-icon:before {\n    background-image: url(../images/icons@2x.png);\n    background-size: 238px 204px;\n  }\n}\n\n.tsd-signature.tsd-kind-icon:before {\n  background-position: 0 -153px;\n}\n\n.tsd-kind-object-literal > .tsd-kind-icon:before {\n  background-position: 0px -17px;\n}\n.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -17px;\n}\n.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -17px;\n}\n\n.tsd-kind-class > .tsd-kind-icon:before {\n  background-position: 0px -34px;\n}\n.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -34px;\n}\n.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -34px;\n}\n\n.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before {\n  background-position: 0px -51px;\n}\n.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -51px;\n}\n.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -51px;\n}\n\n.tsd-kind-interface > .tsd-kind-icon:before {\n  background-position: 0px -68px;\n}\n.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -68px;\n}\n.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -68px;\n}\n\n.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before {\n  background-position: 0px -85px;\n}\n.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -85px;\n}\n.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -85px;\n}\n\n.tsd-kind-namespace > .tsd-kind-icon:before {\n  background-position: 0px -102px;\n}\n.tsd-kind-namespace.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -102px;\n}\n.tsd-kind-namespace.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -102px;\n}\n\n.tsd-kind-module > .tsd-kind-icon:before {\n  background-position: 0px -102px;\n}\n.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -102px;\n}\n.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -102px;\n}\n\n.tsd-kind-enum > .tsd-kind-icon:before {\n  background-position: 0px -119px;\n}\n.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -119px;\n}\n.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -119px;\n}\n\n.tsd-kind-enum-member > .tsd-kind-icon:before {\n  background-position: 0px -136px;\n}\n.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -136px;\n}\n.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -136px;\n}\n\n.tsd-kind-signature > .tsd-kind-icon:before {\n  background-position: 0px -153px;\n}\n.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -153px;\n}\n.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -153px;\n}\n\n.tsd-kind-type-alias > .tsd-kind-icon:before {\n  background-position: 0px -170px;\n}\n.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -170px;\n}\n.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -170px;\n}\n\n.tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before {\n  background-position: 0px -187px;\n}\n.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -17px -187px;\n}\n.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -34px -187px;\n}\n\n.tsd-kind-variable > .tsd-kind-icon:before {\n  background-position: -136px -0px;\n}\n.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -0px;\n}\n.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -0px;\n}\n.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -0px;\n}\n\n.tsd-kind-property > .tsd-kind-icon:before {\n  background-position: -136px -0px;\n}\n.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -0px;\n}\n.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -0px;\n}\n.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -0px;\n}\n\n.tsd-kind-get-signature > .tsd-kind-icon:before {\n  background-position: -136px -17px;\n}\n.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -17px;\n}\n.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -17px;\n}\n.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -17px;\n}\n\n.tsd-kind-set-signature > .tsd-kind-icon:before {\n  background-position: -136px -34px;\n}\n.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -34px;\n}\n.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -34px;\n}\n.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -34px;\n}\n\n.tsd-kind-accessor > .tsd-kind-icon:before {\n  background-position: -136px -51px;\n}\n.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -51px;\n}\n.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -51px;\n}\n.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -51px;\n}\n\n.tsd-kind-function > .tsd-kind-icon:before {\n  background-position: -136px -68px;\n}\n.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -68px;\n}\n.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -68px;\n}\n.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -68px;\n}\n\n.tsd-kind-method > .tsd-kind-icon:before {\n  background-position: -136px -68px;\n}\n.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -68px;\n}\n.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -68px;\n}\n.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -68px;\n}\n\n.tsd-kind-call-signature > .tsd-kind-icon:before {\n  background-position: -136px -68px;\n}\n.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -68px;\n}\n.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -68px;\n}\n.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -68px;\n}\n\n.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before {\n  background-position: -136px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -85px;\n}\n.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -85px;\n}\n\n.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before {\n  background-position: -136px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -85px;\n}\n.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -85px;\n}\n\n.tsd-kind-constructor > .tsd-kind-icon:before {\n  background-position: -136px -102px;\n}\n.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -102px;\n}\n.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -102px;\n}\n.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -102px;\n}\n\n.tsd-kind-constructor-signature > .tsd-kind-icon:before {\n  background-position: -136px -102px;\n}\n.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -102px;\n}\n.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -102px;\n}\n.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -102px;\n}\n\n.tsd-kind-index-signature > .tsd-kind-icon:before {\n  background-position: -136px -119px;\n}\n.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -119px;\n}\n.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -119px;\n}\n.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -119px;\n}\n\n.tsd-kind-event > .tsd-kind-icon:before {\n  background-position: -136px -136px;\n}\n.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -136px;\n}\n.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -136px;\n}\n.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -136px;\n}\n\n.tsd-is-static > .tsd-kind-icon:before {\n  background-position: -136px -153px;\n}\n.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -153px;\n}\n.tsd-is-static.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -153px;\n}\n.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -153px;\n}\n.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -153px;\n}\n.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -153px;\n}\n.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -153px;\n}\n.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -153px;\n}\n.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -153px;\n}\n.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -153px;\n}\n.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -153px;\n}\n.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -153px;\n}\n.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -153px;\n}\n\n.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before {\n  background-position: -136px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -170px;\n}\n.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -170px;\n}\n\n.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before {\n  background-position: -136px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -170px;\n}\n.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -170px;\n}\n\n.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before {\n  background-position: -136px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -170px;\n}\n.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -170px;\n}\n\n.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before {\n  background-position: -136px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -153px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before {\n  background-position: -51px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -68px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -85px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -102px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before {\n  background-position: -170px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before {\n  background-position: -187px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before {\n  background-position: -119px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before {\n  background-position: -204px -187px;\n}\n.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before {\n  background-position: -221px -187px;\n}\n\n@keyframes fade-in {\n  from {\n    opacity: 0;\n  }\n  to {\n    opacity: 1;\n  }\n}\n@keyframes fade-out {\n  from {\n    opacity: 1;\n    visibility: visible;\n  }\n  to {\n    opacity: 0;\n  }\n}\n@keyframes fade-in-delayed {\n  0% {\n    opacity: 0;\n  }\n  33% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n@keyframes fade-out-delayed {\n  0% {\n    opacity: 1;\n    visibility: visible;\n  }\n  66% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n@keyframes shift-to-left {\n  from {\n    transform: translate(0, 0);\n  }\n  to {\n    transform: translate(-25%, 0);\n  }\n}\n@keyframes unshift-to-left {\n  from {\n    transform: translate(-25%, 0);\n  }\n  to {\n    transform: translate(0, 0);\n  }\n}\n@keyframes pop-in-from-right {\n  from {\n    transform: translate(100%, 0);\n  }\n  to {\n    transform: translate(0, 0);\n  }\n}\n@keyframes pop-out-to-right {\n  from {\n    transform: translate(0, 0);\n    visibility: visible;\n  }\n  to {\n    transform: translate(100%, 0);\n  }\n}\nbody {\n  background: #fdfdfd;\n  font-family: \"Segoe UI\", sans-serif;\n  font-size: 16px;\n  color: #222;\n}\n\na {\n  color: #4da6ff;\n  text-decoration: none;\n}\na:hover {\n  text-decoration: underline;\n}\n\ncode, pre {\n  font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n  padding: 0.2em;\n  margin: 0;\n  font-size: 14px;\n  background-color: rgba(0, 0, 0, 0.04);\n}\n\npre {\n  padding: 10px;\n}\npre code {\n  padding: 0;\n  font-size: 100%;\n  background-color: transparent;\n}\n\nblockquote {\n  margin: 1em 0;\n  padding-left: 1em;\n  border-left: 4px solid gray;\n}\n\n.tsd-typography {\n  line-height: 1.333em;\n}\n.tsd-typography ul {\n  list-style: square;\n  padding: 0 0 0 20px;\n  margin: 0;\n}\n.tsd-typography h4, .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, .tsd-typography h5, .tsd-typography h6 {\n  font-size: 1em;\n  margin: 0;\n}\n.tsd-typography h5, .tsd-typography h6 {\n  font-weight: normal;\n}\n.tsd-typography p, .tsd-typography ul, .tsd-typography ol {\n  margin: 1em 0;\n}\n\n@media (min-width: 901px) and (max-width: 1024px) {\n  html.default .col-content {\n    width: 72%;\n  }\n  html.default .col-menu {\n    width: 28%;\n  }\n  html.default .tsd-navigation {\n    padding-left: 10px;\n  }\n}\n@media (max-width: 900px) {\n  html.default .col-content {\n    float: none;\n    width: 100%;\n  }\n  html.default .col-menu {\n    position: fixed !important;\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    z-index: 1024;\n    top: 0 !important;\n    bottom: 0 !important;\n    left: auto !important;\n    right: 0 !important;\n    width: 100%;\n    padding: 20px 20px 0 0;\n    max-width: 450px;\n    visibility: hidden;\n    background-color: #fff;\n    transform: translate(100%, 0);\n  }\n  html.default .col-menu > *:last-child {\n    padding-bottom: 20px;\n  }\n  html.default .overlay {\n    content: \"\";\n    display: block;\n    position: fixed;\n    z-index: 1023;\n    top: 0;\n    left: 0;\n    right: 0;\n    bottom: 0;\n    background-color: rgba(0, 0, 0, 0.75);\n    visibility: hidden;\n  }\n  html.default.to-has-menu .overlay {\n    animation: fade-in 0.4s;\n  }\n  html.default.to-has-menu header,\nhtml.default.to-has-menu footer,\nhtml.default.to-has-menu .col-content {\n    animation: shift-to-left 0.4s;\n  }\n  html.default.to-has-menu .col-menu {\n    animation: pop-in-from-right 0.4s;\n  }\n  html.default.from-has-menu .overlay {\n    animation: fade-out 0.4s;\n  }\n  html.default.from-has-menu header,\nhtml.default.from-has-menu footer,\nhtml.default.from-has-menu .col-content {\n    animation: unshift-to-left 0.4s;\n  }\n  html.default.from-has-menu .col-menu {\n    animation: pop-out-to-right 0.4s;\n  }\n  html.default.has-menu body {\n    overflow: hidden;\n  }\n  html.default.has-menu .overlay {\n    visibility: visible;\n  }\n  html.default.has-menu header,\nhtml.default.has-menu footer,\nhtml.default.has-menu .col-content {\n    transform: translate(-25%, 0);\n  }\n  html.default.has-menu .col-menu {\n    visibility: visible;\n    transform: translate(0, 0);\n  }\n}\n\n.tsd-page-title {\n  padding: 70px 0 20px 0;\n  margin: 0 0 40px 0;\n  background: #fff;\n  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);\n}\n.tsd-page-title h1 {\n  margin: 0;\n}\n\n.tsd-breadcrumb {\n  margin: 0;\n  padding: 0;\n  color: #707070;\n}\n.tsd-breadcrumb a {\n  color: #707070;\n  text-decoration: none;\n}\n.tsd-breadcrumb a:hover {\n  text-decoration: underline;\n}\n.tsd-breadcrumb li {\n  display: inline;\n}\n.tsd-breadcrumb li:after {\n  content: \" / \";\n}\n\nhtml.minimal .container {\n  margin: 0;\n}\nhtml.minimal .container-main {\n  padding-top: 50px;\n  padding-bottom: 0;\n}\nhtml.minimal .content-wrap {\n  padding-left: 300px;\n}\nhtml.minimal .tsd-navigation {\n  position: fixed !important;\n  overflow: auto;\n  -webkit-overflow-scrolling: touch;\n  box-sizing: border-box;\n  z-index: 1;\n  left: 0;\n  top: 40px;\n  bottom: 0;\n  width: 300px;\n  padding: 20px;\n  margin: 0;\n}\nhtml.minimal .tsd-member .tsd-member {\n  margin-left: 0;\n}\nhtml.minimal .tsd-page-toolbar {\n  position: fixed;\n  z-index: 2;\n}\nhtml.minimal #tsd-filter .tsd-filter-group {\n  right: 0;\n  transform: none;\n}\nhtml.minimal footer {\n  background-color: transparent;\n}\nhtml.minimal footer .container {\n  padding: 0;\n}\nhtml.minimal .tsd-generator {\n  padding: 0;\n}\n@media (max-width: 900px) {\n  html.minimal .tsd-navigation {\n    display: none;\n  }\n  html.minimal .content-wrap {\n    padding-left: 0;\n  }\n}\n\ndl.tsd-comment-tags {\n  overflow: hidden;\n}\ndl.tsd-comment-tags dt {\n  float: left;\n  padding: 1px 5px;\n  margin: 0 10px 0 0;\n  border-radius: 4px;\n  border: 1px solid #707070;\n  color: #707070;\n  font-size: 0.8em;\n  font-weight: normal;\n}\ndl.tsd-comment-tags dd {\n  margin: 0 0 10px 0;\n}\ndl.tsd-comment-tags dd:before, dl.tsd-comment-tags dd:after {\n  display: table;\n  content: \" \";\n}\ndl.tsd-comment-tags dd pre, dl.tsd-comment-tags dd:after {\n  clear: both;\n}\ndl.tsd-comment-tags p {\n  margin: 0;\n}\n\n.tsd-panel.tsd-comment .lead {\n  font-size: 1.1em;\n  line-height: 1.333em;\n  margin-bottom: 2em;\n}\n.tsd-panel.tsd-comment .lead:last-child {\n  margin-bottom: 0;\n}\n\n.toggle-protected .tsd-is-private {\n  display: none;\n}\n\n.toggle-public .tsd-is-private,\n.toggle-public .tsd-is-protected,\n.toggle-public .tsd-is-private-protected {\n  display: none;\n}\n\n.toggle-inherited .tsd-is-inherited {\n  display: none;\n}\n\n.toggle-externals .tsd-is-external {\n  display: none;\n}\n\n#tsd-filter {\n  position: relative;\n  display: inline-block;\n  height: 40px;\n  vertical-align: bottom;\n}\n.no-filter #tsd-filter {\n  display: none;\n}\n#tsd-filter .tsd-filter-group {\n  display: inline-block;\n  height: 40px;\n  vertical-align: bottom;\n  white-space: nowrap;\n}\n#tsd-filter input {\n  display: none;\n}\n@media (max-width: 900px) {\n  #tsd-filter .tsd-filter-group {\n    display: block;\n    position: absolute;\n    top: 40px;\n    right: 20px;\n    height: auto;\n    background-color: #fff;\n    visibility: hidden;\n    transform: translate(50%, 0);\n    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);\n  }\n  .has-options #tsd-filter .tsd-filter-group {\n    visibility: visible;\n  }\n  .to-has-options #tsd-filter .tsd-filter-group {\n    animation: fade-in 0.2s;\n  }\n  .from-has-options #tsd-filter .tsd-filter-group {\n    animation: fade-out 0.2s;\n  }\n  #tsd-filter label,\n#tsd-filter .tsd-select {\n    display: block;\n    padding-right: 20px;\n  }\n}\n\nfooter {\n  border-top: 1px solid #eee;\n  background-color: #fff;\n}\nfooter.with-border-bottom {\n  border-bottom: 1px solid #eee;\n}\nfooter .tsd-legend-group {\n  font-size: 0;\n}\nfooter .tsd-legend {\n  display: inline-block;\n  width: 25%;\n  padding: 0;\n  font-size: 16px;\n  list-style: none;\n  line-height: 1.333em;\n  vertical-align: top;\n}\n@media (max-width: 900px) {\n  footer .tsd-legend {\n    width: 50%;\n  }\n}\n\n.tsd-hierarchy {\n  list-style: square;\n  padding: 0 0 0 20px;\n  margin: 0;\n}\n.tsd-hierarchy .target {\n  font-weight: bold;\n}\n\n.tsd-index-panel .tsd-index-content {\n  margin-bottom: -30px !important;\n}\n.tsd-index-panel .tsd-index-section {\n  margin-bottom: 30px !important;\n}\n.tsd-index-panel h3 {\n  margin: 0 -20px 10px -20px;\n  padding: 0 20px 10px 20px;\n  border-bottom: 1px solid #eee;\n}\n.tsd-index-panel ul.tsd-index-list {\n  -webkit-column-count: 3;\n  -moz-column-count: 3;\n  -ms-column-count: 3;\n  -o-column-count: 3;\n  column-count: 3;\n  -webkit-column-gap: 20px;\n  -moz-column-gap: 20px;\n  -ms-column-gap: 20px;\n  -o-column-gap: 20px;\n  column-gap: 20px;\n  padding: 0;\n  list-style: none;\n  line-height: 1.333em;\n}\n@media (max-width: 900px) {\n  .tsd-index-panel ul.tsd-index-list {\n    -webkit-column-count: 1;\n    -moz-column-count: 1;\n    -ms-column-count: 1;\n    -o-column-count: 1;\n    column-count: 1;\n  }\n}\n@media (min-width: 901px) and (max-width: 1024px) {\n  .tsd-index-panel ul.tsd-index-list {\n    -webkit-column-count: 2;\n    -moz-column-count: 2;\n    -ms-column-count: 2;\n    -o-column-count: 2;\n    column-count: 2;\n  }\n}\n.tsd-index-panel ul.tsd-index-list li {\n  -webkit-page-break-inside: avoid;\n  -moz-page-break-inside: avoid;\n  -ms-page-break-inside: avoid;\n  -o-page-break-inside: avoid;\n  page-break-inside: avoid;\n}\n.tsd-index-panel a,\n.tsd-index-panel .tsd-parent-kind-module a {\n  color: #9600ff;\n}\n.tsd-index-panel .tsd-parent-kind-interface a {\n  color: #647F1B;\n}\n.tsd-index-panel .tsd-parent-kind-enum a {\n  color: #937210;\n}\n.tsd-index-panel .tsd-parent-kind-class a {\n  color: #0672DE;\n}\n.tsd-index-panel .tsd-kind-module a {\n  color: #9600ff;\n}\n.tsd-index-panel .tsd-kind-interface a {\n  color: #647F1B;\n}\n.tsd-index-panel .tsd-kind-enum a {\n  color: #937210;\n}\n.tsd-index-panel .tsd-kind-class a {\n  color: #0672DE;\n}\n.tsd-index-panel .tsd-is-private a {\n  color: #707070;\n}\n\n.tsd-flag {\n  display: inline-block;\n  padding: 1px 5px;\n  border-radius: 4px;\n  color: #fff;\n  background-color: #707070;\n  text-indent: 0;\n  font-size: 14px;\n  font-weight: normal;\n}\n\n.tsd-anchor {\n  position: absolute;\n  top: -100px;\n}\n\n.tsd-member {\n  position: relative;\n}\n.tsd-member .tsd-anchor + h3 {\n  margin-top: 0;\n  margin-bottom: 0;\n  border-bottom: none;\n}\n.tsd-member a[data-tsd-kind] {\n  color: #9600ff;\n}\n.tsd-member a[data-tsd-kind=Interface] {\n  color: #647F1B;\n}\n.tsd-member a[data-tsd-kind=Enum] {\n  color: #937210;\n}\n.tsd-member a[data-tsd-kind=Class] {\n  color: #0672DE;\n}\n.tsd-member a[data-tsd-kind=Private] {\n  color: #707070;\n}\n\n.tsd-navigation {\n  margin: 0 0 0 40px;\n}\n.tsd-navigation a {\n  display: block;\n  padding-top: 2px;\n  padding-bottom: 2px;\n  border-left: 2px solid transparent;\n  color: #222;\n  text-decoration: none;\n  transition: border-left-color 0.1s;\n}\n.tsd-navigation a:hover {\n  text-decoration: underline;\n}\n.tsd-navigation ul {\n  margin: 0;\n  padding: 0;\n  list-style: none;\n}\n.tsd-navigation li {\n  padding: 0;\n}\n\n.tsd-navigation.primary {\n  padding-bottom: 40px;\n}\n.tsd-navigation.primary a {\n  display: block;\n  padding-top: 6px;\n  padding-bottom: 6px;\n}\n.tsd-navigation.primary ul li a {\n  padding-left: 5px;\n}\n.tsd-navigation.primary ul li li a {\n  padding-left: 25px;\n}\n.tsd-navigation.primary ul li li li a {\n  padding-left: 45px;\n}\n.tsd-navigation.primary ul li li li li a {\n  padding-left: 65px;\n}\n.tsd-navigation.primary ul li li li li li a {\n  padding-left: 85px;\n}\n.tsd-navigation.primary ul li li li li li li a {\n  padding-left: 105px;\n}\n.tsd-navigation.primary > ul {\n  border-bottom: 1px solid #eee;\n}\n.tsd-navigation.primary li {\n  border-top: 1px solid #eee;\n}\n.tsd-navigation.primary li.current > a {\n  font-weight: bold;\n}\n.tsd-navigation.primary li.label span {\n  display: block;\n  padding: 20px 0 6px 5px;\n  color: #707070;\n}\n.tsd-navigation.primary li.globals + li > span, .tsd-navigation.primary li.globals + li > a {\n  padding-top: 20px;\n}\n\n.tsd-navigation.secondary {\n  max-height: calc(100vh - 1rem - 40px);\n  overflow: auto;\n  position: -webkit-sticky;\n  position: sticky;\n  top: calc(.5rem + 40px);\n  transition: 0.3s;\n}\n.tsd-navigation.secondary.tsd-navigation--toolbar-hide {\n  max-height: calc(100vh - 1rem);\n  top: 0.5rem;\n}\n.tsd-navigation.secondary ul {\n  transition: opacity 0.2s;\n}\n.tsd-navigation.secondary ul li a {\n  padding-left: 25px;\n}\n.tsd-navigation.secondary ul li li a {\n  padding-left: 45px;\n}\n.tsd-navigation.secondary ul li li li a {\n  padding-left: 65px;\n}\n.tsd-navigation.secondary ul li li li li a {\n  padding-left: 85px;\n}\n.tsd-navigation.secondary ul li li li li li a {\n  padding-left: 105px;\n}\n.tsd-navigation.secondary ul li li li li li li a {\n  padding-left: 125px;\n}\n.tsd-navigation.secondary ul.current a {\n  border-left-color: #eee;\n}\n.tsd-navigation.secondary li.focus > a,\n.tsd-navigation.secondary ul.current li.focus > a {\n  border-left-color: #000;\n}\n.tsd-navigation.secondary li.current {\n  margin-top: 20px;\n  margin-bottom: 20px;\n  border-left-color: #eee;\n}\n.tsd-navigation.secondary li.current > a {\n  font-weight: bold;\n}\n\n@media (min-width: 901px) {\n  .menu-sticky-wrap {\n    position: static;\n  }\n}\n\n.tsd-panel {\n  margin: 20px 0;\n  padding: 20px;\n  background-color: #fff;\n  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);\n}\n.tsd-panel:empty {\n  display: none;\n}\n.tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 {\n  margin: 1.5em -20px 10px -20px;\n  padding: 0 20px 10px 20px;\n  border-bottom: 1px solid #eee;\n}\n.tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature {\n  margin-bottom: 0;\n  border-bottom: 0;\n}\n.tsd-panel table {\n  display: block;\n  width: 100%;\n  overflow: auto;\n  margin-top: 10px;\n  word-break: normal;\n  word-break: keep-all;\n}\n.tsd-panel table th {\n  font-weight: bold;\n}\n.tsd-panel table th, .tsd-panel table td {\n  padding: 6px 13px;\n  border: 1px solid #ddd;\n}\n.tsd-panel table tr {\n  background-color: #fff;\n  border-top: 1px solid #ccc;\n}\n.tsd-panel table tr:nth-child(2n) {\n  background-color: #f8f8f8;\n}\n\n.tsd-panel-group {\n  margin: 60px 0;\n}\n.tsd-panel-group > h1, .tsd-panel-group > h2, .tsd-panel-group > h3 {\n  padding-left: 20px;\n  padding-right: 20px;\n}\n\n#tsd-search {\n  transition: background-color 0.2s;\n}\n#tsd-search .title {\n  position: relative;\n  z-index: 2;\n}\n#tsd-search .field {\n  position: absolute;\n  left: 0;\n  top: 0;\n  right: 40px;\n  height: 40px;\n}\n#tsd-search .field input {\n  box-sizing: border-box;\n  position: relative;\n  top: -50px;\n  z-index: 1;\n  width: 100%;\n  padding: 0 10px;\n  opacity: 0;\n  outline: 0;\n  border: 0;\n  background: transparent;\n  color: #222;\n}\n#tsd-search .field label {\n  position: absolute;\n  overflow: hidden;\n  right: -40px;\n}\n#tsd-search .field input,\n#tsd-search .title {\n  transition: opacity 0.2s;\n}\n#tsd-search .results {\n  position: absolute;\n  visibility: hidden;\n  top: 40px;\n  width: 100%;\n  margin: 0;\n  padding: 0;\n  list-style: none;\n  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);\n}\n#tsd-search .results li {\n  padding: 0 10px;\n  background-color: #fdfdfd;\n}\n#tsd-search .results li:nth-child(even) {\n  background-color: #fff;\n}\n#tsd-search .results li.state {\n  display: none;\n}\n#tsd-search .results li.current,\n#tsd-search .results li:hover {\n  background-color: #eee;\n}\n#tsd-search .results a {\n  display: block;\n}\n#tsd-search .results a:before {\n  top: 10px;\n}\n#tsd-search .results span.parent {\n  color: #707070;\n  font-weight: normal;\n}\n#tsd-search.has-focus {\n  background-color: #eee;\n}\n#tsd-search.has-focus .field input {\n  top: 0;\n  opacity: 1;\n}\n#tsd-search.has-focus .title {\n  z-index: 0;\n  opacity: 0;\n}\n#tsd-search.has-focus .results {\n  visibility: visible;\n}\n#tsd-search.loading .results li.state.loading {\n  display: block;\n}\n#tsd-search.failure .results li.state.failure {\n  display: block;\n}\n\n.tsd-signature {\n  margin: 0 0 1em 0;\n  padding: 10px;\n  border: 1px solid #eee;\n  font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n  font-size: 14px;\n  overflow-x: auto;\n}\n.tsd-signature.tsd-kind-icon {\n  padding-left: 30px;\n}\n.tsd-signature.tsd-kind-icon:before {\n  top: 10px;\n  left: 10px;\n}\n.tsd-panel > .tsd-signature {\n  margin-left: -20px;\n  margin-right: -20px;\n  border-width: 1px 0;\n}\n.tsd-panel > .tsd-signature.tsd-kind-icon {\n  padding-left: 40px;\n}\n.tsd-panel > .tsd-signature.tsd-kind-icon:before {\n  left: 20px;\n}\n\n.tsd-signature-symbol {\n  color: #707070;\n  font-weight: normal;\n}\n\n.tsd-signature-type {\n  font-style: italic;\n  font-weight: normal;\n}\n\n.tsd-signatures {\n  padding: 0;\n  margin: 0 0 1em 0;\n  border: 1px solid #eee;\n}\n.tsd-signatures .tsd-signature {\n  margin: 0;\n  border-width: 1px 0 0 0;\n  transition: background-color 0.1s;\n}\n.tsd-signatures .tsd-signature:first-child {\n  border-top-width: 0;\n}\n.tsd-signatures .tsd-signature.current {\n  background-color: #eee;\n}\n.tsd-signatures.active > .tsd-signature {\n  cursor: pointer;\n}\n.tsd-panel > .tsd-signatures {\n  margin-left: -20px;\n  margin-right: -20px;\n  border-width: 1px 0;\n}\n.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon {\n  padding-left: 40px;\n}\n.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before {\n  left: 20px;\n}\n.tsd-panel > a.anchor + .tsd-signatures {\n  border-top-width: 0;\n  margin-top: -20px;\n}\n\nul.tsd-descriptions {\n  position: relative;\n  overflow: hidden;\n  padding: 0;\n  list-style: none;\n}\nul.tsd-descriptions.active > .tsd-description {\n  display: none;\n}\nul.tsd-descriptions.active > .tsd-description.current {\n  display: block;\n}\nul.tsd-descriptions.active > .tsd-description.fade-in {\n  animation: fade-in-delayed 0.3s;\n}\nul.tsd-descriptions.active > .tsd-description.fade-out {\n  animation: fade-out-delayed 0.3s;\n  position: absolute;\n  display: block;\n  top: 0;\n  left: 0;\n  right: 0;\n  opacity: 0;\n  visibility: hidden;\n}\nul.tsd-descriptions h4, ul.tsd-descriptions .tsd-index-panel h3, .tsd-index-panel ul.tsd-descriptions h3 {\n  font-size: 16px;\n  margin: 1em 0 0.5em 0;\n}\n\nul.tsd-parameters,\nul.tsd-type-parameters {\n  list-style: square;\n  margin: 0;\n  padding-left: 20px;\n}\nul.tsd-parameters > li.tsd-parameter-signature,\nul.tsd-type-parameters > li.tsd-parameter-signature {\n  list-style: none;\n  margin-left: -20px;\n}\nul.tsd-parameters h5,\nul.tsd-type-parameters h5 {\n  font-size: 16px;\n  margin: 1em 0 0.5em 0;\n}\nul.tsd-parameters .tsd-comment,\nul.tsd-type-parameters .tsd-comment {\n  margin-top: -0.5em;\n}\n\n.tsd-sources {\n  font-size: 14px;\n  color: #707070;\n  margin: 0 0 1em 0;\n}\n.tsd-sources a {\n  color: #707070;\n  text-decoration: underline;\n}\n.tsd-sources ul, .tsd-sources p {\n  margin: 0 !important;\n}\n.tsd-sources ul {\n  list-style: none;\n  padding: 0;\n}\n\n.tsd-page-toolbar {\n  position: fixed;\n  z-index: 1;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 40px;\n  color: #333;\n  background: #fff;\n  border-bottom: 1px solid #eee;\n  transition: transform 0.3s linear;\n}\n.tsd-page-toolbar a {\n  color: #333;\n  text-decoration: none;\n}\n.tsd-page-toolbar a.title {\n  font-weight: bold;\n}\n.tsd-page-toolbar a.title:hover {\n  text-decoration: underline;\n}\n.tsd-page-toolbar .table-wrap {\n  display: table;\n  width: 100%;\n  height: 40px;\n}\n.tsd-page-toolbar .table-cell {\n  display: table-cell;\n  position: relative;\n  white-space: nowrap;\n  line-height: 40px;\n}\n.tsd-page-toolbar .table-cell:first-child {\n  width: 100%;\n}\n\n.tsd-page-toolbar--hide {\n  transform: translateY(-100%);\n}\n\n.tsd-select .tsd-select-list li:before, .tsd-select .tsd-select-label:before, .tsd-widget:before {\n  content: \"\";\n  display: inline-block;\n  width: 40px;\n  height: 40px;\n  margin: 0 -8px 0 0;\n  background-image: url(../images/widgets.png);\n  background-repeat: no-repeat;\n  text-indent: -1024px;\n  vertical-align: bottom;\n}\n@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {\n  .tsd-select .tsd-select-list li:before, .tsd-select .tsd-select-label:before, .tsd-widget:before {\n    background-image: url(../images/widgets@2x.png);\n    background-size: 320px 40px;\n  }\n}\n\n.tsd-widget {\n  display: inline-block;\n  overflow: hidden;\n  opacity: 0.6;\n  height: 40px;\n  transition: opacity 0.1s, background-color 0.2s;\n  vertical-align: bottom;\n  cursor: pointer;\n}\n.tsd-widget:hover {\n  opacity: 0.8;\n}\n.tsd-widget.active {\n  opacity: 1;\n  background-color: #eee;\n}\n.tsd-widget.no-caption {\n  width: 40px;\n}\n.tsd-widget.no-caption:before {\n  margin: 0;\n}\n.tsd-widget.search:before {\n  background-position: 0 0;\n}\n.tsd-widget.menu:before {\n  background-position: -40px 0;\n}\n.tsd-widget.options:before {\n  background-position: -80px 0;\n}\n.tsd-widget.options, .tsd-widget.menu {\n  display: none;\n}\n@media (max-width: 900px) {\n  .tsd-widget.options, .tsd-widget.menu {\n    display: inline-block;\n  }\n}\ninput[type=checkbox] + .tsd-widget:before {\n  background-position: -120px 0;\n}\ninput[type=checkbox]:checked + .tsd-widget:before {\n  background-position: -160px 0;\n}\n\n.tsd-select {\n  position: relative;\n  display: inline-block;\n  height: 40px;\n  transition: opacity 0.1s, background-color 0.2s;\n  vertical-align: bottom;\n  cursor: pointer;\n}\n.tsd-select .tsd-select-label {\n  opacity: 0.6;\n  transition: opacity 0.2s;\n}\n.tsd-select .tsd-select-label:before {\n  background-position: -240px 0;\n}\n.tsd-select.active .tsd-select-label {\n  opacity: 0.8;\n}\n.tsd-select.active .tsd-select-list {\n  visibility: visible;\n  opacity: 1;\n  transition-delay: 0s;\n}\n.tsd-select .tsd-select-list {\n  position: absolute;\n  visibility: hidden;\n  top: 40px;\n  left: 0;\n  margin: 0;\n  padding: 0;\n  opacity: 0;\n  list-style: none;\n  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);\n  transition: visibility 0s 0.2s, opacity 0.2s;\n}\n.tsd-select .tsd-select-list li {\n  padding: 0 20px 0 0;\n  background-color: #fdfdfd;\n}\n.tsd-select .tsd-select-list li:before {\n  background-position: 40px 0;\n}\n.tsd-select .tsd-select-list li:nth-child(even) {\n  background-color: #fff;\n}\n.tsd-select .tsd-select-list li:hover {\n  background-color: #eee;\n}\n.tsd-select .tsd-select-list li.selected:before {\n  background-position: -200px 0;\n}\n@media (max-width: 900px) {\n  .tsd-select .tsd-select-list {\n    top: 0;\n    left: auto;\n    right: 100%;\n    margin-right: -5px;\n  }\n  .tsd-select .tsd-select-label:before {\n    background-position: -280px 0;\n  }\n}\n\nimg {\n  max-width: 100%;\n}\n"
  },
  {
    "path": "docs/assets/js/main.js",
    "content": "/*\n * ATTENTION: The \"eval\" devtool has been used (maybe by default in mode: \"development\").\n * This devtool is not neither made for production nor for readable output files.\n * It uses \"eval()\" calls to create a separate source file in the browser devtools.\n * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)\n * or disable the default devtool with \"devtool: false\".\n * If you are looking for production-ready output files, see mode: \"production\" (https://webpack.js.org/configuration/mode/).\n */\n/******/ (() => { // webpackBootstrap\n/******/ \tvar __webpack_modules__ = ({\n\n/***/ \"../node_modules/lunr/lunr.js\":\n/*!************************************!*\\\n  !*** ../node_modules/lunr/lunr.js ***!\n  \\************************************/\n/***/ ((module, exports, __webpack_require__) => {\n\neval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**\\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9\\n * Copyright (C) 2020 Oliver Nightingale\\n * @license MIT\\n */\\n\\n;(function(){\\n\\n/**\\n * A convenience function for configuring and constructing\\n * a new lunr Index.\\n *\\n * A lunr.Builder instance is created and the pipeline setup\\n * with a trimmer, stop word filter and stemmer.\\n *\\n * This builder object is yielded to the configuration function\\n * that is passed as a parameter, allowing the list of fields\\n * and other builder parameters to be customised.\\n *\\n * All documents _must_ be added within the passed config function.\\n *\\n * @example\\n * var idx = lunr(function () {\\n *   this.field('title')\\n *   this.field('body')\\n *   this.ref('id')\\n *\\n *   documents.forEach(function (doc) {\\n *     this.add(doc)\\n *   }, this)\\n * })\\n *\\n * @see {@link lunr.Builder}\\n * @see {@link lunr.Pipeline}\\n * @see {@link lunr.trimmer}\\n * @see {@link lunr.stopWordFilter}\\n * @see {@link lunr.stemmer}\\n * @namespace {function} lunr\\n */\\nvar lunr = function (config) {\\n  var builder = new lunr.Builder\\n\\n  builder.pipeline.add(\\n    lunr.trimmer,\\n    lunr.stopWordFilter,\\n    lunr.stemmer\\n  )\\n\\n  builder.searchPipeline.add(\\n    lunr.stemmer\\n  )\\n\\n  config.call(builder, builder)\\n  return builder.build()\\n}\\n\\nlunr.version = \\\"2.3.9\\\"\\n/*!\\n * lunr.utils\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * A namespace containing utils for the rest of the lunr library\\n * @namespace lunr.utils\\n */\\nlunr.utils = {}\\n\\n/**\\n * Print a warning message to the console.\\n *\\n * @param {String} message The message to be printed.\\n * @memberOf lunr.utils\\n * @function\\n */\\nlunr.utils.warn = (function (global) {\\n  /* eslint-disable no-console */\\n  return function (message) {\\n    if (global.console && console.warn) {\\n      console.warn(message)\\n    }\\n  }\\n  /* eslint-enable no-console */\\n})(this)\\n\\n/**\\n * Convert an object to a string.\\n *\\n * In the case of `null` and `undefined` the function returns\\n * the empty string, in all other cases the result of calling\\n * `toString` on the passed object is returned.\\n *\\n * @param {Any} obj The object to convert to a string.\\n * @return {String} string representation of the passed object.\\n * @memberOf lunr.utils\\n */\\nlunr.utils.asString = function (obj) {\\n  if (obj === void 0 || obj === null) {\\n    return \\\"\\\"\\n  } else {\\n    return obj.toString()\\n  }\\n}\\n\\n/**\\n * Clones an object.\\n *\\n * Will create a copy of an existing object such that any mutations\\n * on the copy cannot affect the original.\\n *\\n * Only shallow objects are supported, passing a nested object to this\\n * function will cause a TypeError.\\n *\\n * Objects with primitives, and arrays of primitives are supported.\\n *\\n * @param {Object} obj The object to clone.\\n * @return {Object} a clone of the passed object.\\n * @throws {TypeError} when a nested object is passed.\\n * @memberOf Utils\\n */\\nlunr.utils.clone = function (obj) {\\n  if (obj === null || obj === undefined) {\\n    return obj\\n  }\\n\\n  var clone = Object.create(null),\\n      keys = Object.keys(obj)\\n\\n  for (var i = 0; i < keys.length; i++) {\\n    var key = keys[i],\\n        val = obj[key]\\n\\n    if (Array.isArray(val)) {\\n      clone[key] = val.slice()\\n      continue\\n    }\\n\\n    if (typeof val === 'string' ||\\n        typeof val === 'number' ||\\n        typeof val === 'boolean') {\\n      clone[key] = val\\n      continue\\n    }\\n\\n    throw new TypeError(\\\"clone is not deep and does not support nested objects\\\")\\n  }\\n\\n  return clone\\n}\\nlunr.FieldRef = function (docRef, fieldName, stringValue) {\\n  this.docRef = docRef\\n  this.fieldName = fieldName\\n  this._stringValue = stringValue\\n}\\n\\nlunr.FieldRef.joiner = \\\"/\\\"\\n\\nlunr.FieldRef.fromString = function (s) {\\n  var n = s.indexOf(lunr.FieldRef.joiner)\\n\\n  if (n === -1) {\\n    throw \\\"malformed field ref string\\\"\\n  }\\n\\n  var fieldRef = s.slice(0, n),\\n      docRef = s.slice(n + 1)\\n\\n  return new lunr.FieldRef (docRef, fieldRef, s)\\n}\\n\\nlunr.FieldRef.prototype.toString = function () {\\n  if (this._stringValue == undefined) {\\n    this._stringValue = this.fieldName + lunr.FieldRef.joiner + this.docRef\\n  }\\n\\n  return this._stringValue\\n}\\n/*!\\n * lunr.Set\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * A lunr set.\\n *\\n * @constructor\\n */\\nlunr.Set = function (elements) {\\n  this.elements = Object.create(null)\\n\\n  if (elements) {\\n    this.length = elements.length\\n\\n    for (var i = 0; i < this.length; i++) {\\n      this.elements[elements[i]] = true\\n    }\\n  } else {\\n    this.length = 0\\n  }\\n}\\n\\n/**\\n * A complete set that contains all elements.\\n *\\n * @static\\n * @readonly\\n * @type {lunr.Set}\\n */\\nlunr.Set.complete = {\\n  intersect: function (other) {\\n    return other\\n  },\\n\\n  union: function () {\\n    return this\\n  },\\n\\n  contains: function () {\\n    return true\\n  }\\n}\\n\\n/**\\n * An empty set that contains no elements.\\n *\\n * @static\\n * @readonly\\n * @type {lunr.Set}\\n */\\nlunr.Set.empty = {\\n  intersect: function () {\\n    return this\\n  },\\n\\n  union: function (other) {\\n    return other\\n  },\\n\\n  contains: function () {\\n    return false\\n  }\\n}\\n\\n/**\\n * Returns true if this set contains the specified object.\\n *\\n * @param {object} object - Object whose presence in this set is to be tested.\\n * @returns {boolean} - True if this set contains the specified object.\\n */\\nlunr.Set.prototype.contains = function (object) {\\n  return !!this.elements[object]\\n}\\n\\n/**\\n * Returns a new set containing only the elements that are present in both\\n * this set and the specified set.\\n *\\n * @param {lunr.Set} other - set to intersect with this set.\\n * @returns {lunr.Set} a new set that is the intersection of this and the specified set.\\n */\\n\\nlunr.Set.prototype.intersect = function (other) {\\n  var a, b, elements, intersection = []\\n\\n  if (other === lunr.Set.complete) {\\n    return this\\n  }\\n\\n  if (other === lunr.Set.empty) {\\n    return other\\n  }\\n\\n  if (this.length < other.length) {\\n    a = this\\n    b = other\\n  } else {\\n    a = other\\n    b = this\\n  }\\n\\n  elements = Object.keys(a.elements)\\n\\n  for (var i = 0; i < elements.length; i++) {\\n    var element = elements[i]\\n    if (element in b.elements) {\\n      intersection.push(element)\\n    }\\n  }\\n\\n  return new lunr.Set (intersection)\\n}\\n\\n/**\\n * Returns a new set combining the elements of this and the specified set.\\n *\\n * @param {lunr.Set} other - set to union with this set.\\n * @return {lunr.Set} a new set that is the union of this and the specified set.\\n */\\n\\nlunr.Set.prototype.union = function (other) {\\n  if (other === lunr.Set.complete) {\\n    return lunr.Set.complete\\n  }\\n\\n  if (other === lunr.Set.empty) {\\n    return this\\n  }\\n\\n  return new lunr.Set(Object.keys(this.elements).concat(Object.keys(other.elements)))\\n}\\n/**\\n * A function to calculate the inverse document frequency for\\n * a posting. This is shared between the builder and the index\\n *\\n * @private\\n * @param {object} posting - The posting for a given term\\n * @param {number} documentCount - The total number of documents.\\n */\\nlunr.idf = function (posting, documentCount) {\\n  var documentsWithTerm = 0\\n\\n  for (var fieldName in posting) {\\n    if (fieldName == '_index') continue // Ignore the term index, its not a field\\n    documentsWithTerm += Object.keys(posting[fieldName]).length\\n  }\\n\\n  var x = (documentCount - documentsWithTerm + 0.5) / (documentsWithTerm + 0.5)\\n\\n  return Math.log(1 + Math.abs(x))\\n}\\n\\n/**\\n * A token wraps a string representation of a token\\n * as it is passed through the text processing pipeline.\\n *\\n * @constructor\\n * @param {string} [str=''] - The string token being wrapped.\\n * @param {object} [metadata={}] - Metadata associated with this token.\\n */\\nlunr.Token = function (str, metadata) {\\n  this.str = str || \\\"\\\"\\n  this.metadata = metadata || {}\\n}\\n\\n/**\\n * Returns the token string that is being wrapped by this object.\\n *\\n * @returns {string}\\n */\\nlunr.Token.prototype.toString = function () {\\n  return this.str\\n}\\n\\n/**\\n * A token update function is used when updating or optionally\\n * when cloning a token.\\n *\\n * @callback lunr.Token~updateFunction\\n * @param {string} str - The string representation of the token.\\n * @param {Object} metadata - All metadata associated with this token.\\n */\\n\\n/**\\n * Applies the given function to the wrapped string token.\\n *\\n * @example\\n * token.update(function (str, metadata) {\\n *   return str.toUpperCase()\\n * })\\n *\\n * @param {lunr.Token~updateFunction} fn - A function to apply to the token string.\\n * @returns {lunr.Token}\\n */\\nlunr.Token.prototype.update = function (fn) {\\n  this.str = fn(this.str, this.metadata)\\n  return this\\n}\\n\\n/**\\n * Creates a clone of this token. Optionally a function can be\\n * applied to the cloned token.\\n *\\n * @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token.\\n * @returns {lunr.Token}\\n */\\nlunr.Token.prototype.clone = function (fn) {\\n  fn = fn || function (s) { return s }\\n  return new lunr.Token (fn(this.str, this.metadata), this.metadata)\\n}\\n/*!\\n * lunr.tokenizer\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * A function for splitting a string into tokens ready to be inserted into\\n * the search index. Uses `lunr.tokenizer.separator` to split strings, change\\n * the value of this property to change how strings are split into tokens.\\n *\\n * This tokenizer will convert its parameter to a string by calling `toString` and\\n * then will split this string on the character in `lunr.tokenizer.separator`.\\n * Arrays will have their elements converted to strings and wrapped in a lunr.Token.\\n *\\n * Optional metadata can be passed to the tokenizer, this metadata will be cloned and\\n * added as metadata to every token that is created from the object to be tokenized.\\n *\\n * @static\\n * @param {?(string|object|object[])} obj - The object to convert into tokens\\n * @param {?object} metadata - Optional metadata to associate with every token\\n * @returns {lunr.Token[]}\\n * @see {@link lunr.Pipeline}\\n */\\nlunr.tokenizer = function (obj, metadata) {\\n  if (obj == null || obj == undefined) {\\n    return []\\n  }\\n\\n  if (Array.isArray(obj)) {\\n    return obj.map(function (t) {\\n      return new lunr.Token(\\n        lunr.utils.asString(t).toLowerCase(),\\n        lunr.utils.clone(metadata)\\n      )\\n    })\\n  }\\n\\n  var str = obj.toString().toLowerCase(),\\n      len = str.length,\\n      tokens = []\\n\\n  for (var sliceEnd = 0, sliceStart = 0; sliceEnd <= len; sliceEnd++) {\\n    var char = str.charAt(sliceEnd),\\n        sliceLength = sliceEnd - sliceStart\\n\\n    if ((char.match(lunr.tokenizer.separator) || sliceEnd == len)) {\\n\\n      if (sliceLength > 0) {\\n        var tokenMetadata = lunr.utils.clone(metadata) || {}\\n        tokenMetadata[\\\"position\\\"] = [sliceStart, sliceLength]\\n        tokenMetadata[\\\"index\\\"] = tokens.length\\n\\n        tokens.push(\\n          new lunr.Token (\\n            str.slice(sliceStart, sliceEnd),\\n            tokenMetadata\\n          )\\n        )\\n      }\\n\\n      sliceStart = sliceEnd + 1\\n    }\\n\\n  }\\n\\n  return tokens\\n}\\n\\n/**\\n * The separator used to split a string into tokens. Override this property to change the behaviour of\\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\\n *\\n * @static\\n * @see lunr.tokenizer\\n */\\nlunr.tokenizer.separator = /[\\\\s\\\\-]+/\\n/*!\\n * lunr.Pipeline\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\\n * tokens in documents entering the search index and queries being ran against\\n * the index.\\n *\\n * An instance of lunr.Index created with the lunr shortcut will contain a\\n * pipeline with a stop word filter and an English language stemmer. Extra\\n * functions can be added before or after either of these functions or these\\n * default functions can be removed.\\n *\\n * When run the pipeline will call each function in turn, passing a token, the\\n * index of that token in the original list of all tokens and finally a list of\\n * all the original tokens.\\n *\\n * The output of functions in the pipeline will be passed to the next function\\n * in the pipeline. To exclude a token from entering the index the function\\n * should return undefined, the rest of the pipeline will not be called with\\n * this token.\\n *\\n * For serialisation of pipelines to work, all functions used in an instance of\\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\\n * then be loaded. If trying to load a serialised pipeline that uses functions\\n * that are not registered an error will be thrown.\\n *\\n * If not planning on serialising the pipeline then registering pipeline functions\\n * is not necessary.\\n *\\n * @constructor\\n */\\nlunr.Pipeline = function () {\\n  this._stack = []\\n}\\n\\nlunr.Pipeline.registeredFunctions = Object.create(null)\\n\\n/**\\n * A pipeline function maps lunr.Token to lunr.Token. A lunr.Token contains the token\\n * string as well as all known metadata. A pipeline function can mutate the token string\\n * or mutate (or add) metadata for a given token.\\n *\\n * A pipeline function can indicate that the passed token should be discarded by returning\\n * null, undefined or an empty string. This token will not be passed to any downstream pipeline\\n * functions and will not be added to the index.\\n *\\n * Multiple tokens can be returned by returning an array of tokens. Each token will be passed\\n * to any downstream pipeline functions and all will returned tokens will be added to the index.\\n *\\n * Any number of pipeline functions may be chained together using a lunr.Pipeline.\\n *\\n * @interface lunr.PipelineFunction\\n * @param {lunr.Token} token - A token from the document being processed.\\n * @param {number} i - The index of this token in the complete list of tokens for this document/field.\\n * @param {lunr.Token[]} tokens - All tokens for this document/field.\\n * @returns {(?lunr.Token|lunr.Token[])}\\n */\\n\\n/**\\n * Register a function with the pipeline.\\n *\\n * Functions that are used in the pipeline should be registered if the pipeline\\n * needs to be serialised, or a serialised pipeline needs to be loaded.\\n *\\n * Registering a function does not add it to a pipeline, functions must still be\\n * added to instances of the pipeline for them to be used when running a pipeline.\\n *\\n * @param {lunr.PipelineFunction} fn - The function to check for.\\n * @param {String} label - The label to register this function with\\n */\\nlunr.Pipeline.registerFunction = function (fn, label) {\\n  if (label in this.registeredFunctions) {\\n    lunr.utils.warn('Overwriting existing registered function: ' + label)\\n  }\\n\\n  fn.label = label\\n  lunr.Pipeline.registeredFunctions[fn.label] = fn\\n}\\n\\n/**\\n * Warns if the function is not registered as a Pipeline function.\\n *\\n * @param {lunr.PipelineFunction} fn - The function to check for.\\n * @private\\n */\\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\\n  var isRegistered = fn.label && (fn.label in this.registeredFunctions)\\n\\n  if (!isRegistered) {\\n    lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\\\n', fn)\\n  }\\n}\\n\\n/**\\n * Loads a previously serialised pipeline.\\n *\\n * All functions to be loaded must already be registered with lunr.Pipeline.\\n * If any function from the serialised data has not been registered then an\\n * error will be thrown.\\n *\\n * @param {Object} serialised - The serialised pipeline to load.\\n * @returns {lunr.Pipeline}\\n */\\nlunr.Pipeline.load = function (serialised) {\\n  var pipeline = new lunr.Pipeline\\n\\n  serialised.forEach(function (fnName) {\\n    var fn = lunr.Pipeline.registeredFunctions[fnName]\\n\\n    if (fn) {\\n      pipeline.add(fn)\\n    } else {\\n      throw new Error('Cannot load unregistered function: ' + fnName)\\n    }\\n  })\\n\\n  return pipeline\\n}\\n\\n/**\\n * Adds new functions to the end of the pipeline.\\n *\\n * Logs a warning if the function has not been registered.\\n *\\n * @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline.\\n */\\nlunr.Pipeline.prototype.add = function () {\\n  var fns = Array.prototype.slice.call(arguments)\\n\\n  fns.forEach(function (fn) {\\n    lunr.Pipeline.warnIfFunctionNotRegistered(fn)\\n    this._stack.push(fn)\\n  }, this)\\n}\\n\\n/**\\n * Adds a single function after a function that already exists in the\\n * pipeline.\\n *\\n * Logs a warning if the function has not been registered.\\n *\\n * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.\\n * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.\\n */\\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\\n  lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\\n\\n  var pos = this._stack.indexOf(existingFn)\\n  if (pos == -1) {\\n    throw new Error('Cannot find existingFn')\\n  }\\n\\n  pos = pos + 1\\n  this._stack.splice(pos, 0, newFn)\\n}\\n\\n/**\\n * Adds a single function before a function that already exists in the\\n * pipeline.\\n *\\n * Logs a warning if the function has not been registered.\\n *\\n * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.\\n * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.\\n */\\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\\n  lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\\n\\n  var pos = this._stack.indexOf(existingFn)\\n  if (pos == -1) {\\n    throw new Error('Cannot find existingFn')\\n  }\\n\\n  this._stack.splice(pos, 0, newFn)\\n}\\n\\n/**\\n * Removes a function from the pipeline.\\n *\\n * @param {lunr.PipelineFunction} fn The function to remove from the pipeline.\\n */\\nlunr.Pipeline.prototype.remove = function (fn) {\\n  var pos = this._stack.indexOf(fn)\\n  if (pos == -1) {\\n    return\\n  }\\n\\n  this._stack.splice(pos, 1)\\n}\\n\\n/**\\n * Runs the current list of functions that make up the pipeline against the\\n * passed tokens.\\n *\\n * @param {Array} tokens The tokens to run through the pipeline.\\n * @returns {Array}\\n */\\nlunr.Pipeline.prototype.run = function (tokens) {\\n  var stackLength = this._stack.length\\n\\n  for (var i = 0; i < stackLength; i++) {\\n    var fn = this._stack[i]\\n    var memo = []\\n\\n    for (var j = 0; j < tokens.length; j++) {\\n      var result = fn(tokens[j], j, tokens)\\n\\n      if (result === null || result === void 0 || result === '') continue\\n\\n      if (Array.isArray(result)) {\\n        for (var k = 0; k < result.length; k++) {\\n          memo.push(result[k])\\n        }\\n      } else {\\n        memo.push(result)\\n      }\\n    }\\n\\n    tokens = memo\\n  }\\n\\n  return tokens\\n}\\n\\n/**\\n * Convenience method for passing a string through a pipeline and getting\\n * strings out. This method takes care of wrapping the passed string in a\\n * token and mapping the resulting tokens back to strings.\\n *\\n * @param {string} str - The string to pass through the pipeline.\\n * @param {?object} metadata - Optional metadata to associate with the token\\n * passed to the pipeline.\\n * @returns {string[]}\\n */\\nlunr.Pipeline.prototype.runString = function (str, metadata) {\\n  var token = new lunr.Token (str, metadata)\\n\\n  return this.run([token]).map(function (t) {\\n    return t.toString()\\n  })\\n}\\n\\n/**\\n * Resets the pipeline by removing any existing processors.\\n *\\n */\\nlunr.Pipeline.prototype.reset = function () {\\n  this._stack = []\\n}\\n\\n/**\\n * Returns a representation of the pipeline ready for serialisation.\\n *\\n * Logs a warning if the function has not been registered.\\n *\\n * @returns {Array}\\n */\\nlunr.Pipeline.prototype.toJSON = function () {\\n  return this._stack.map(function (fn) {\\n    lunr.Pipeline.warnIfFunctionNotRegistered(fn)\\n\\n    return fn.label\\n  })\\n}\\n/*!\\n * lunr.Vector\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * A vector is used to construct the vector space of documents and queries. These\\n * vectors support operations to determine the similarity between two documents or\\n * a document and a query.\\n *\\n * Normally no parameters are required for initializing a vector, but in the case of\\n * loading a previously dumped vector the raw elements can be provided to the constructor.\\n *\\n * For performance reasons vectors are implemented with a flat array, where an elements\\n * index is immediately followed by its value. E.g. [index, value, index, value]. This\\n * allows the underlying array to be as sparse as possible and still offer decent\\n * performance when being used for vector calculations.\\n *\\n * @constructor\\n * @param {Number[]} [elements] - The flat list of element index and element value pairs.\\n */\\nlunr.Vector = function (elements) {\\n  this._magnitude = 0\\n  this.elements = elements || []\\n}\\n\\n\\n/**\\n * Calculates the position within the vector to insert a given index.\\n *\\n * This is used internally by insert and upsert. If there are duplicate indexes then\\n * the position is returned as if the value for that index were to be updated, but it\\n * is the callers responsibility to check whether there is a duplicate at that index\\n *\\n * @param {Number} insertIdx - The index at which the element should be inserted.\\n * @returns {Number}\\n */\\nlunr.Vector.prototype.positionForIndex = function (index) {\\n  // For an empty vector the tuple can be inserted at the beginning\\n  if (this.elements.length == 0) {\\n    return 0\\n  }\\n\\n  var start = 0,\\n      end = this.elements.length / 2,\\n      sliceLength = end - start,\\n      pivotPoint = Math.floor(sliceLength / 2),\\n      pivotIndex = this.elements[pivotPoint * 2]\\n\\n  while (sliceLength > 1) {\\n    if (pivotIndex < index) {\\n      start = pivotPoint\\n    }\\n\\n    if (pivotIndex > index) {\\n      end = pivotPoint\\n    }\\n\\n    if (pivotIndex == index) {\\n      break\\n    }\\n\\n    sliceLength = end - start\\n    pivotPoint = start + Math.floor(sliceLength / 2)\\n    pivotIndex = this.elements[pivotPoint * 2]\\n  }\\n\\n  if (pivotIndex == index) {\\n    return pivotPoint * 2\\n  }\\n\\n  if (pivotIndex > index) {\\n    return pivotPoint * 2\\n  }\\n\\n  if (pivotIndex < index) {\\n    return (pivotPoint + 1) * 2\\n  }\\n}\\n\\n/**\\n * Inserts an element at an index within the vector.\\n *\\n * Does not allow duplicates, will throw an error if there is already an entry\\n * for this index.\\n *\\n * @param {Number} insertIdx - The index at which the element should be inserted.\\n * @param {Number} val - The value to be inserted into the vector.\\n */\\nlunr.Vector.prototype.insert = function (insertIdx, val) {\\n  this.upsert(insertIdx, val, function () {\\n    throw \\\"duplicate index\\\"\\n  })\\n}\\n\\n/**\\n * Inserts or updates an existing index within the vector.\\n *\\n * @param {Number} insertIdx - The index at which the element should be inserted.\\n * @param {Number} val - The value to be inserted into the vector.\\n * @param {function} fn - A function that is called for updates, the existing value and the\\n * requested value are passed as arguments\\n */\\nlunr.Vector.prototype.upsert = function (insertIdx, val, fn) {\\n  this._magnitude = 0\\n  var position = this.positionForIndex(insertIdx)\\n\\n  if (this.elements[position] == insertIdx) {\\n    this.elements[position + 1] = fn(this.elements[position + 1], val)\\n  } else {\\n    this.elements.splice(position, 0, insertIdx, val)\\n  }\\n}\\n\\n/**\\n * Calculates the magnitude of this vector.\\n *\\n * @returns {Number}\\n */\\nlunr.Vector.prototype.magnitude = function () {\\n  if (this._magnitude) return this._magnitude\\n\\n  var sumOfSquares = 0,\\n      elementsLength = this.elements.length\\n\\n  for (var i = 1; i < elementsLength; i += 2) {\\n    var val = this.elements[i]\\n    sumOfSquares += val * val\\n  }\\n\\n  return this._magnitude = Math.sqrt(sumOfSquares)\\n}\\n\\n/**\\n * Calculates the dot product of this vector and another vector.\\n *\\n * @param {lunr.Vector} otherVector - The vector to compute the dot product with.\\n * @returns {Number}\\n */\\nlunr.Vector.prototype.dot = function (otherVector) {\\n  var dotProduct = 0,\\n      a = this.elements, b = otherVector.elements,\\n      aLen = a.length, bLen = b.length,\\n      aVal = 0, bVal = 0,\\n      i = 0, j = 0\\n\\n  while (i < aLen && j < bLen) {\\n    aVal = a[i], bVal = b[j]\\n    if (aVal < bVal) {\\n      i += 2\\n    } else if (aVal > bVal) {\\n      j += 2\\n    } else if (aVal == bVal) {\\n      dotProduct += a[i + 1] * b[j + 1]\\n      i += 2\\n      j += 2\\n    }\\n  }\\n\\n  return dotProduct\\n}\\n\\n/**\\n * Calculates the similarity between this vector and another vector.\\n *\\n * @param {lunr.Vector} otherVector - The other vector to calculate the\\n * similarity with.\\n * @returns {Number}\\n */\\nlunr.Vector.prototype.similarity = function (otherVector) {\\n  return this.dot(otherVector) / this.magnitude() || 0\\n}\\n\\n/**\\n * Converts the vector to an array of the elements within the vector.\\n *\\n * @returns {Number[]}\\n */\\nlunr.Vector.prototype.toArray = function () {\\n  var output = new Array (this.elements.length / 2)\\n\\n  for (var i = 1, j = 0; i < this.elements.length; i += 2, j++) {\\n    output[j] = this.elements[i]\\n  }\\n\\n  return output\\n}\\n\\n/**\\n * A JSON serializable representation of the vector.\\n *\\n * @returns {Number[]}\\n */\\nlunr.Vector.prototype.toJSON = function () {\\n  return this.elements\\n}\\n/* eslint-disable */\\n/*!\\n * lunr.stemmer\\n * Copyright (C) 2020 Oliver Nightingale\\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\\n */\\n\\n/**\\n * lunr.stemmer is an english language stemmer, this is a JavaScript\\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\\n *\\n * @static\\n * @implements {lunr.PipelineFunction}\\n * @param {lunr.Token} token - The string to stem\\n * @returns {lunr.Token}\\n * @see {@link lunr.Pipeline}\\n * @function\\n */\\nlunr.stemmer = (function(){\\n  var step2list = {\\n      \\\"ational\\\" : \\\"ate\\\",\\n      \\\"tional\\\" : \\\"tion\\\",\\n      \\\"enci\\\" : \\\"ence\\\",\\n      \\\"anci\\\" : \\\"ance\\\",\\n      \\\"izer\\\" : \\\"ize\\\",\\n      \\\"bli\\\" : \\\"ble\\\",\\n      \\\"alli\\\" : \\\"al\\\",\\n      \\\"entli\\\" : \\\"ent\\\",\\n      \\\"eli\\\" : \\\"e\\\",\\n      \\\"ousli\\\" : \\\"ous\\\",\\n      \\\"ization\\\" : \\\"ize\\\",\\n      \\\"ation\\\" : \\\"ate\\\",\\n      \\\"ator\\\" : \\\"ate\\\",\\n      \\\"alism\\\" : \\\"al\\\",\\n      \\\"iveness\\\" : \\\"ive\\\",\\n      \\\"fulness\\\" : \\\"ful\\\",\\n      \\\"ousness\\\" : \\\"ous\\\",\\n      \\\"aliti\\\" : \\\"al\\\",\\n      \\\"iviti\\\" : \\\"ive\\\",\\n      \\\"biliti\\\" : \\\"ble\\\",\\n      \\\"logi\\\" : \\\"log\\\"\\n    },\\n\\n    step3list = {\\n      \\\"icate\\\" : \\\"ic\\\",\\n      \\\"ative\\\" : \\\"\\\",\\n      \\\"alize\\\" : \\\"al\\\",\\n      \\\"iciti\\\" : \\\"ic\\\",\\n      \\\"ical\\\" : \\\"ic\\\",\\n      \\\"ful\\\" : \\\"\\\",\\n      \\\"ness\\\" : \\\"\\\"\\n    },\\n\\n    c = \\\"[^aeiou]\\\",          // consonant\\n    v = \\\"[aeiouy]\\\",          // vowel\\n    C = c + \\\"[^aeiouy]*\\\",    // consonant sequence\\n    V = v + \\\"[aeiou]*\\\",      // vowel sequence\\n\\n    mgr0 = \\\"^(\\\" + C + \\\")?\\\" + V + C,               // [C]VC... is m>0\\n    meq1 = \\\"^(\\\" + C + \\\")?\\\" + V + C + \\\"(\\\" + V + \\\")?$\\\",  // [C]VC[V] is m=1\\n    mgr1 = \\\"^(\\\" + C + \\\")?\\\" + V + C + V + C,       // [C]VCVC... is m>1\\n    s_v = \\\"^(\\\" + C + \\\")?\\\" + v;                   // vowel in stem\\n\\n  var re_mgr0 = new RegExp(mgr0);\\n  var re_mgr1 = new RegExp(mgr1);\\n  var re_meq1 = new RegExp(meq1);\\n  var re_s_v = new RegExp(s_v);\\n\\n  var re_1a = /^(.+?)(ss|i)es$/;\\n  var re2_1a = /^(.+?)([^s])s$/;\\n  var re_1b = /^(.+?)eed$/;\\n  var re2_1b = /^(.+?)(ed|ing)$/;\\n  var re_1b_2 = /.$/;\\n  var re2_1b_2 = /(at|bl|iz)$/;\\n  var re3_1b_2 = new RegExp(\\\"([^aeiouylsz])\\\\\\\\1$\\\");\\n  var re4_1b_2 = new RegExp(\\\"^\\\" + C + v + \\\"[^aeiouwxy]$\\\");\\n\\n  var re_1c = /^(.+?[^aeiou])y$/;\\n  var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\\n\\n  var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\\n\\n  var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\\n  var re2_4 = /^(.+?)(s|t)(ion)$/;\\n\\n  var re_5 = /^(.+?)e$/;\\n  var re_5_1 = /ll$/;\\n  var re3_5 = new RegExp(\\\"^\\\" + C + v + \\\"[^aeiouwxy]$\\\");\\n\\n  var porterStemmer = function porterStemmer(w) {\\n    var stem,\\n      suffix,\\n      firstch,\\n      re,\\n      re2,\\n      re3,\\n      re4;\\n\\n    if (w.length < 3) { return w; }\\n\\n    firstch = w.substr(0,1);\\n    if (firstch == \\\"y\\\") {\\n      w = firstch.toUpperCase() + w.substr(1);\\n    }\\n\\n    // Step 1a\\n    re = re_1a\\n    re2 = re2_1a;\\n\\n    if (re.test(w)) { w = w.replace(re,\\\"$1$2\\\"); }\\n    else if (re2.test(w)) { w = w.replace(re2,\\\"$1$2\\\"); }\\n\\n    // Step 1b\\n    re = re_1b;\\n    re2 = re2_1b;\\n    if (re.test(w)) {\\n      var fp = re.exec(w);\\n      re = re_mgr0;\\n      if (re.test(fp[1])) {\\n        re = re_1b_2;\\n        w = w.replace(re,\\\"\\\");\\n      }\\n    } else if (re2.test(w)) {\\n      var fp = re2.exec(w);\\n      stem = fp[1];\\n      re2 = re_s_v;\\n      if (re2.test(stem)) {\\n        w = stem;\\n        re2 = re2_1b_2;\\n        re3 = re3_1b_2;\\n        re4 = re4_1b_2;\\n        if (re2.test(w)) { w = w + \\\"e\\\"; }\\n        else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\\\"\\\"); }\\n        else if (re4.test(w)) { w = w + \\\"e\\\"; }\\n      }\\n    }\\n\\n    // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\\n    re = re_1c;\\n    if (re.test(w)) {\\n      var fp = re.exec(w);\\n      stem = fp[1];\\n      w = stem + \\\"i\\\";\\n    }\\n\\n    // Step 2\\n    re = re_2;\\n    if (re.test(w)) {\\n      var fp = re.exec(w);\\n      stem = fp[1];\\n      suffix = fp[2];\\n      re = re_mgr0;\\n      if (re.test(stem)) {\\n        w = stem + step2list[suffix];\\n      }\\n    }\\n\\n    // Step 3\\n    re = re_3;\\n    if (re.test(w)) {\\n      var fp = re.exec(w);\\n      stem = fp[1];\\n      suffix = fp[2];\\n      re = re_mgr0;\\n      if (re.test(stem)) {\\n        w = stem + step3list[suffix];\\n      }\\n    }\\n\\n    // Step 4\\n    re = re_4;\\n    re2 = re2_4;\\n    if (re.test(w)) {\\n      var fp = re.exec(w);\\n      stem = fp[1];\\n      re = re_mgr1;\\n      if (re.test(stem)) {\\n        w = stem;\\n      }\\n    } else if (re2.test(w)) {\\n      var fp = re2.exec(w);\\n      stem = fp[1] + fp[2];\\n      re2 = re_mgr1;\\n      if (re2.test(stem)) {\\n        w = stem;\\n      }\\n    }\\n\\n    // Step 5\\n    re = re_5;\\n    if (re.test(w)) {\\n      var fp = re.exec(w);\\n      stem = fp[1];\\n      re = re_mgr1;\\n      re2 = re_meq1;\\n      re3 = re3_5;\\n      if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\\n        w = stem;\\n      }\\n    }\\n\\n    re = re_5_1;\\n    re2 = re_mgr1;\\n    if (re.test(w) && re2.test(w)) {\\n      re = re_1b_2;\\n      w = w.replace(re,\\\"\\\");\\n    }\\n\\n    // and turn initial Y back to y\\n\\n    if (firstch == \\\"y\\\") {\\n      w = firstch.toLowerCase() + w.substr(1);\\n    }\\n\\n    return w;\\n  };\\n\\n  return function (token) {\\n    return token.update(porterStemmer);\\n  }\\n})();\\n\\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\\n/*!\\n * lunr.stopWordFilter\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\\n * list of stop words.\\n *\\n * The built in lunr.stopWordFilter is built using this generator and can be used\\n * to generate custom stopWordFilters for applications or non English languages.\\n *\\n * @function\\n * @param {Array} token The token to pass through the filter\\n * @returns {lunr.PipelineFunction}\\n * @see lunr.Pipeline\\n * @see lunr.stopWordFilter\\n */\\nlunr.generateStopWordFilter = function (stopWords) {\\n  var words = stopWords.reduce(function (memo, stopWord) {\\n    memo[stopWord] = stopWord\\n    return memo\\n  }, {})\\n\\n  return function (token) {\\n    if (token && words[token.toString()] !== token.toString()) return token\\n  }\\n}\\n\\n/**\\n * lunr.stopWordFilter is an English language stop word list filter, any words\\n * contained in the list will not be passed through the filter.\\n *\\n * This is intended to be used in the Pipeline. If the token does not pass the\\n * filter then undefined will be returned.\\n *\\n * @function\\n * @implements {lunr.PipelineFunction}\\n * @params {lunr.Token} token - A token to check for being a stop word.\\n * @returns {lunr.Token}\\n * @see {@link lunr.Pipeline}\\n */\\nlunr.stopWordFilter = lunr.generateStopWordFilter([\\n  'a',\\n  'able',\\n  'about',\\n  'across',\\n  'after',\\n  'all',\\n  'almost',\\n  'also',\\n  'am',\\n  'among',\\n  'an',\\n  'and',\\n  'any',\\n  'are',\\n  'as',\\n  'at',\\n  'be',\\n  'because',\\n  'been',\\n  'but',\\n  'by',\\n  'can',\\n  'cannot',\\n  'could',\\n  'dear',\\n  'did',\\n  'do',\\n  'does',\\n  'either',\\n  'else',\\n  'ever',\\n  'every',\\n  'for',\\n  'from',\\n  'get',\\n  'got',\\n  'had',\\n  'has',\\n  'have',\\n  'he',\\n  'her',\\n  'hers',\\n  'him',\\n  'his',\\n  'how',\\n  'however',\\n  'i',\\n  'if',\\n  'in',\\n  'into',\\n  'is',\\n  'it',\\n  'its',\\n  'just',\\n  'least',\\n  'let',\\n  'like',\\n  'likely',\\n  'may',\\n  'me',\\n  'might',\\n  'most',\\n  'must',\\n  'my',\\n  'neither',\\n  'no',\\n  'nor',\\n  'not',\\n  'of',\\n  'off',\\n  'often',\\n  'on',\\n  'only',\\n  'or',\\n  'other',\\n  'our',\\n  'own',\\n  'rather',\\n  'said',\\n  'say',\\n  'says',\\n  'she',\\n  'should',\\n  'since',\\n  'so',\\n  'some',\\n  'than',\\n  'that',\\n  'the',\\n  'their',\\n  'them',\\n  'then',\\n  'there',\\n  'these',\\n  'they',\\n  'this',\\n  'tis',\\n  'to',\\n  'too',\\n  'twas',\\n  'us',\\n  'wants',\\n  'was',\\n  'we',\\n  'were',\\n  'what',\\n  'when',\\n  'where',\\n  'which',\\n  'while',\\n  'who',\\n  'whom',\\n  'why',\\n  'will',\\n  'with',\\n  'would',\\n  'yet',\\n  'you',\\n  'your'\\n])\\n\\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\\n/*!\\n * lunr.trimmer\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * lunr.trimmer is a pipeline function for trimming non word\\n * characters from the beginning and end of tokens before they\\n * enter the index.\\n *\\n * This implementation may not work correctly for non latin\\n * characters and should either be removed or adapted for use\\n * with languages with non-latin characters.\\n *\\n * @static\\n * @implements {lunr.PipelineFunction}\\n * @param {lunr.Token} token The token to pass through the filter\\n * @returns {lunr.Token}\\n * @see lunr.Pipeline\\n */\\nlunr.trimmer = function (token) {\\n  return token.update(function (s) {\\n    return s.replace(/^\\\\W+/, '').replace(/\\\\W+$/, '')\\n  })\\n}\\n\\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\\n/*!\\n * lunr.TokenSet\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * A token set is used to store the unique list of all tokens\\n * within an index. Token sets are also used to represent an\\n * incoming query to the index, this query token set and index\\n * token set are then intersected to find which tokens to look\\n * up in the inverted index.\\n *\\n * A token set can hold multiple tokens, as in the case of the\\n * index token set, or it can hold a single token as in the\\n * case of a simple query token set.\\n *\\n * Additionally token sets are used to perform wildcard matching.\\n * Leading, contained and trailing wildcards are supported, and\\n * from this edit distance matching can also be provided.\\n *\\n * Token sets are implemented as a minimal finite state automata,\\n * where both common prefixes and suffixes are shared between tokens.\\n * This helps to reduce the space used for storing the token set.\\n *\\n * @constructor\\n */\\nlunr.TokenSet = function () {\\n  this.final = false\\n  this.edges = {}\\n  this.id = lunr.TokenSet._nextId\\n  lunr.TokenSet._nextId += 1\\n}\\n\\n/**\\n * Keeps track of the next, auto increment, identifier to assign\\n * to a new tokenSet.\\n *\\n * TokenSets require a unique identifier to be correctly minimised.\\n *\\n * @private\\n */\\nlunr.TokenSet._nextId = 1\\n\\n/**\\n * Creates a TokenSet instance from the given sorted array of words.\\n *\\n * @param {String[]} arr - A sorted array of strings to create the set from.\\n * @returns {lunr.TokenSet}\\n * @throws Will throw an error if the input array is not sorted.\\n */\\nlunr.TokenSet.fromArray = function (arr) {\\n  var builder = new lunr.TokenSet.Builder\\n\\n  for (var i = 0, len = arr.length; i < len; i++) {\\n    builder.insert(arr[i])\\n  }\\n\\n  builder.finish()\\n  return builder.root\\n}\\n\\n/**\\n * Creates a token set from a query clause.\\n *\\n * @private\\n * @param {Object} clause - A single clause from lunr.Query.\\n * @param {string} clause.term - The query clause term.\\n * @param {number} [clause.editDistance] - The optional edit distance for the term.\\n * @returns {lunr.TokenSet}\\n */\\nlunr.TokenSet.fromClause = function (clause) {\\n  if ('editDistance' in clause) {\\n    return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance)\\n  } else {\\n    return lunr.TokenSet.fromString(clause.term)\\n  }\\n}\\n\\n/**\\n * Creates a token set representing a single string with a specified\\n * edit distance.\\n *\\n * Insertions, deletions, substitutions and transpositions are each\\n * treated as an edit distance of 1.\\n *\\n * Increasing the allowed edit distance will have a dramatic impact\\n * on the performance of both creating and intersecting these TokenSets.\\n * It is advised to keep the edit distance less than 3.\\n *\\n * @param {string} str - The string to create the token set from.\\n * @param {number} editDistance - The allowed edit distance to match.\\n * @returns {lunr.Vector}\\n */\\nlunr.TokenSet.fromFuzzyString = function (str, editDistance) {\\n  var root = new lunr.TokenSet\\n\\n  var stack = [{\\n    node: root,\\n    editsRemaining: editDistance,\\n    str: str\\n  }]\\n\\n  while (stack.length) {\\n    var frame = stack.pop()\\n\\n    // no edit\\n    if (frame.str.length > 0) {\\n      var char = frame.str.charAt(0),\\n          noEditNode\\n\\n      if (char in frame.node.edges) {\\n        noEditNode = frame.node.edges[char]\\n      } else {\\n        noEditNode = new lunr.TokenSet\\n        frame.node.edges[char] = noEditNode\\n      }\\n\\n      if (frame.str.length == 1) {\\n        noEditNode.final = true\\n      }\\n\\n      stack.push({\\n        node: noEditNode,\\n        editsRemaining: frame.editsRemaining,\\n        str: frame.str.slice(1)\\n      })\\n    }\\n\\n    if (frame.editsRemaining == 0) {\\n      continue\\n    }\\n\\n    // insertion\\n    if (\\\"*\\\" in frame.node.edges) {\\n      var insertionNode = frame.node.edges[\\\"*\\\"]\\n    } else {\\n      var insertionNode = new lunr.TokenSet\\n      frame.node.edges[\\\"*\\\"] = insertionNode\\n    }\\n\\n    if (frame.str.length == 0) {\\n      insertionNode.final = true\\n    }\\n\\n    stack.push({\\n      node: insertionNode,\\n      editsRemaining: frame.editsRemaining - 1,\\n      str: frame.str\\n    })\\n\\n    // deletion\\n    // can only do a deletion if we have enough edits remaining\\n    // and if there are characters left to delete in the string\\n    if (frame.str.length > 1) {\\n      stack.push({\\n        node: frame.node,\\n        editsRemaining: frame.editsRemaining - 1,\\n        str: frame.str.slice(1)\\n      })\\n    }\\n\\n    // deletion\\n    // just removing the last character from the str\\n    if (frame.str.length == 1) {\\n      frame.node.final = true\\n    }\\n\\n    // substitution\\n    // can only do a substitution if we have enough edits remaining\\n    // and if there are characters left to substitute\\n    if (frame.str.length >= 1) {\\n      if (\\\"*\\\" in frame.node.edges) {\\n        var substitutionNode = frame.node.edges[\\\"*\\\"]\\n      } else {\\n        var substitutionNode = new lunr.TokenSet\\n        frame.node.edges[\\\"*\\\"] = substitutionNode\\n      }\\n\\n      if (frame.str.length == 1) {\\n        substitutionNode.final = true\\n      }\\n\\n      stack.push({\\n        node: substitutionNode,\\n        editsRemaining: frame.editsRemaining - 1,\\n        str: frame.str.slice(1)\\n      })\\n    }\\n\\n    // transposition\\n    // can only do a transposition if there are edits remaining\\n    // and there are enough characters to transpose\\n    if (frame.str.length > 1) {\\n      var charA = frame.str.charAt(0),\\n          charB = frame.str.charAt(1),\\n          transposeNode\\n\\n      if (charB in frame.node.edges) {\\n        transposeNode = frame.node.edges[charB]\\n      } else {\\n        transposeNode = new lunr.TokenSet\\n        frame.node.edges[charB] = transposeNode\\n      }\\n\\n      if (frame.str.length == 1) {\\n        transposeNode.final = true\\n      }\\n\\n      stack.push({\\n        node: transposeNode,\\n        editsRemaining: frame.editsRemaining - 1,\\n        str: charA + frame.str.slice(2)\\n      })\\n    }\\n  }\\n\\n  return root\\n}\\n\\n/**\\n * Creates a TokenSet from a string.\\n *\\n * The string may contain one or more wildcard characters (*)\\n * that will allow wildcard matching when intersecting with\\n * another TokenSet.\\n *\\n * @param {string} str - The string to create a TokenSet from.\\n * @returns {lunr.TokenSet}\\n */\\nlunr.TokenSet.fromString = function (str) {\\n  var node = new lunr.TokenSet,\\n      root = node\\n\\n  /*\\n   * Iterates through all characters within the passed string\\n   * appending a node for each character.\\n   *\\n   * When a wildcard character is found then a self\\n   * referencing edge is introduced to continually match\\n   * any number of any characters.\\n   */\\n  for (var i = 0, len = str.length; i < len; i++) {\\n    var char = str[i],\\n        final = (i == len - 1)\\n\\n    if (char == \\\"*\\\") {\\n      node.edges[char] = node\\n      node.final = final\\n\\n    } else {\\n      var next = new lunr.TokenSet\\n      next.final = final\\n\\n      node.edges[char] = next\\n      node = next\\n    }\\n  }\\n\\n  return root\\n}\\n\\n/**\\n * Converts this TokenSet into an array of strings\\n * contained within the TokenSet.\\n *\\n * This is not intended to be used on a TokenSet that\\n * contains wildcards, in these cases the results are\\n * undefined and are likely to cause an infinite loop.\\n *\\n * @returns {string[]}\\n */\\nlunr.TokenSet.prototype.toArray = function () {\\n  var words = []\\n\\n  var stack = [{\\n    prefix: \\\"\\\",\\n    node: this\\n  }]\\n\\n  while (stack.length) {\\n    var frame = stack.pop(),\\n        edges = Object.keys(frame.node.edges),\\n        len = edges.length\\n\\n    if (frame.node.final) {\\n      /* In Safari, at this point the prefix is sometimes corrupted, see:\\n       * https://github.com/olivernn/lunr.js/issues/279 Calling any\\n       * String.prototype method forces Safari to \\\"cast\\\" this string to what\\n       * it's supposed to be, fixing the bug. */\\n      frame.prefix.charAt(0)\\n      words.push(frame.prefix)\\n    }\\n\\n    for (var i = 0; i < len; i++) {\\n      var edge = edges[i]\\n\\n      stack.push({\\n        prefix: frame.prefix.concat(edge),\\n        node: frame.node.edges[edge]\\n      })\\n    }\\n  }\\n\\n  return words\\n}\\n\\n/**\\n * Generates a string representation of a TokenSet.\\n *\\n * This is intended to allow TokenSets to be used as keys\\n * in objects, largely to aid the construction and minimisation\\n * of a TokenSet. As such it is not designed to be a human\\n * friendly representation of the TokenSet.\\n *\\n * @returns {string}\\n */\\nlunr.TokenSet.prototype.toString = function () {\\n  // NOTE: Using Object.keys here as this.edges is very likely\\n  // to enter 'hash-mode' with many keys being added\\n  //\\n  // avoiding a for-in loop here as it leads to the function\\n  // being de-optimised (at least in V8). From some simple\\n  // benchmarks the performance is comparable, but allowing\\n  // V8 to optimize may mean easy performance wins in the future.\\n\\n  if (this._str) {\\n    return this._str\\n  }\\n\\n  var str = this.final ? '1' : '0',\\n      labels = Object.keys(this.edges).sort(),\\n      len = labels.length\\n\\n  for (var i = 0; i < len; i++) {\\n    var label = labels[i],\\n        node = this.edges[label]\\n\\n    str = str + label + node.id\\n  }\\n\\n  return str\\n}\\n\\n/**\\n * Returns a new TokenSet that is the intersection of\\n * this TokenSet and the passed TokenSet.\\n *\\n * This intersection will take into account any wildcards\\n * contained within the TokenSet.\\n *\\n * @param {lunr.TokenSet} b - An other TokenSet to intersect with.\\n * @returns {lunr.TokenSet}\\n */\\nlunr.TokenSet.prototype.intersect = function (b) {\\n  var output = new lunr.TokenSet,\\n      frame = undefined\\n\\n  var stack = [{\\n    qNode: b,\\n    output: output,\\n    node: this\\n  }]\\n\\n  while (stack.length) {\\n    frame = stack.pop()\\n\\n    // NOTE: As with the #toString method, we are using\\n    // Object.keys and a for loop instead of a for-in loop\\n    // as both of these objects enter 'hash' mode, causing\\n    // the function to be de-optimised in V8\\n    var qEdges = Object.keys(frame.qNode.edges),\\n        qLen = qEdges.length,\\n        nEdges = Object.keys(frame.node.edges),\\n        nLen = nEdges.length\\n\\n    for (var q = 0; q < qLen; q++) {\\n      var qEdge = qEdges[q]\\n\\n      for (var n = 0; n < nLen; n++) {\\n        var nEdge = nEdges[n]\\n\\n        if (nEdge == qEdge || qEdge == '*') {\\n          var node = frame.node.edges[nEdge],\\n              qNode = frame.qNode.edges[qEdge],\\n              final = node.final && qNode.final,\\n              next = undefined\\n\\n          if (nEdge in frame.output.edges) {\\n            // an edge already exists for this character\\n            // no need to create a new node, just set the finality\\n            // bit unless this node is already final\\n            next = frame.output.edges[nEdge]\\n            next.final = next.final || final\\n\\n          } else {\\n            // no edge exists yet, must create one\\n            // set the finality bit and insert it\\n            // into the output\\n            next = new lunr.TokenSet\\n            next.final = final\\n            frame.output.edges[nEdge] = next\\n          }\\n\\n          stack.push({\\n            qNode: qNode,\\n            output: next,\\n            node: node\\n          })\\n        }\\n      }\\n    }\\n  }\\n\\n  return output\\n}\\nlunr.TokenSet.Builder = function () {\\n  this.previousWord = \\\"\\\"\\n  this.root = new lunr.TokenSet\\n  this.uncheckedNodes = []\\n  this.minimizedNodes = {}\\n}\\n\\nlunr.TokenSet.Builder.prototype.insert = function (word) {\\n  var node,\\n      commonPrefix = 0\\n\\n  if (word < this.previousWord) {\\n    throw new Error (\\\"Out of order word insertion\\\")\\n  }\\n\\n  for (var i = 0; i < word.length && i < this.previousWord.length; i++) {\\n    if (word[i] != this.previousWord[i]) break\\n    commonPrefix++\\n  }\\n\\n  this.minimize(commonPrefix)\\n\\n  if (this.uncheckedNodes.length == 0) {\\n    node = this.root\\n  } else {\\n    node = this.uncheckedNodes[this.uncheckedNodes.length - 1].child\\n  }\\n\\n  for (var i = commonPrefix; i < word.length; i++) {\\n    var nextNode = new lunr.TokenSet,\\n        char = word[i]\\n\\n    node.edges[char] = nextNode\\n\\n    this.uncheckedNodes.push({\\n      parent: node,\\n      char: char,\\n      child: nextNode\\n    })\\n\\n    node = nextNode\\n  }\\n\\n  node.final = true\\n  this.previousWord = word\\n}\\n\\nlunr.TokenSet.Builder.prototype.finish = function () {\\n  this.minimize(0)\\n}\\n\\nlunr.TokenSet.Builder.prototype.minimize = function (downTo) {\\n  for (var i = this.uncheckedNodes.length - 1; i >= downTo; i--) {\\n    var node = this.uncheckedNodes[i],\\n        childKey = node.child.toString()\\n\\n    if (childKey in this.minimizedNodes) {\\n      node.parent.edges[node.char] = this.minimizedNodes[childKey]\\n    } else {\\n      // Cache the key for this node since\\n      // we know it can't change anymore\\n      node.child._str = childKey\\n\\n      this.minimizedNodes[childKey] = node.child\\n    }\\n\\n    this.uncheckedNodes.pop()\\n  }\\n}\\n/*!\\n * lunr.Index\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * An index contains the built index of all documents and provides a query interface\\n * to the index.\\n *\\n * Usually instances of lunr.Index will not be created using this constructor, instead\\n * lunr.Builder should be used to construct new indexes, or lunr.Index.load should be\\n * used to load previously built and serialized indexes.\\n *\\n * @constructor\\n * @param {Object} attrs - The attributes of the built search index.\\n * @param {Object} attrs.invertedIndex - An index of term/field to document reference.\\n * @param {Object<string, lunr.Vector>} attrs.fieldVectors - Field vectors\\n * @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens.\\n * @param {string[]} attrs.fields - The names of indexed document fields.\\n * @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms.\\n */\\nlunr.Index = function (attrs) {\\n  this.invertedIndex = attrs.invertedIndex\\n  this.fieldVectors = attrs.fieldVectors\\n  this.tokenSet = attrs.tokenSet\\n  this.fields = attrs.fields\\n  this.pipeline = attrs.pipeline\\n}\\n\\n/**\\n * A result contains details of a document matching a search query.\\n * @typedef {Object} lunr.Index~Result\\n * @property {string} ref - The reference of the document this result represents.\\n * @property {number} score - A number between 0 and 1 representing how similar this document is to the query.\\n * @property {lunr.MatchData} matchData - Contains metadata about this match including which term(s) caused the match.\\n */\\n\\n/**\\n * Although lunr provides the ability to create queries using lunr.Query, it also provides a simple\\n * query language which itself is parsed into an instance of lunr.Query.\\n *\\n * For programmatically building queries it is advised to directly use lunr.Query, the query language\\n * is best used for human entered text rather than program generated text.\\n *\\n * At its simplest queries can just be a single term, e.g. `hello`, multiple terms are also supported\\n * and will be combined with OR, e.g `hello world` will match documents that contain either 'hello'\\n * or 'world', though those that contain both will rank higher in the results.\\n *\\n * Wildcards can be included in terms to match one or more unspecified characters, these wildcards can\\n * be inserted anywhere within the term, and more than one wildcard can exist in a single term. Adding\\n * wildcards will increase the number of documents that will be found but can also have a negative\\n * impact on query performance, especially with wildcards at the beginning of a term.\\n *\\n * Terms can be restricted to specific fields, e.g. `title:hello`, only documents with the term\\n * hello in the title field will match this query. Using a field not present in the index will lead\\n * to an error being thrown.\\n *\\n * Modifiers can also be added to terms, lunr supports edit distance and boost modifiers on terms. A term\\n * boost will make documents matching that term score higher, e.g. `foo^5`. Edit distance is also supported\\n * to provide fuzzy matching, e.g. 'hello~2' will match documents with hello with an edit distance of 2.\\n * Avoid large values for edit distance to improve query performance.\\n *\\n * Each term also supports a presence modifier. By default a term's presence in document is optional, however\\n * this can be changed to either required or prohibited. For a term's presence to be required in a document the\\n * term should be prefixed with a '+', e.g. `+foo bar` is a search for documents that must contain 'foo' and\\n * optionally contain 'bar'. Conversely a leading '-' sets the terms presence to prohibited, i.e. it must not\\n * appear in a document, e.g. `-foo bar` is a search for documents that do not contain 'foo' but may contain 'bar'.\\n *\\n * To escape special characters the backslash character '\\\\' can be used, this allows searches to include\\n * characters that would normally be considered modifiers, e.g. `foo\\\\~2` will search for a term \\\"foo~2\\\" instead\\n * of attempting to apply a boost of 2 to the search term \\\"foo\\\".\\n *\\n * @typedef {string} lunr.Index~QueryString\\n * @example <caption>Simple single term query</caption>\\n * hello\\n * @example <caption>Multiple term query</caption>\\n * hello world\\n * @example <caption>term scoped to a field</caption>\\n * title:hello\\n * @example <caption>term with a boost of 10</caption>\\n * hello^10\\n * @example <caption>term with an edit distance of 2</caption>\\n * hello~2\\n * @example <caption>terms with presence modifiers</caption>\\n * -foo +bar baz\\n */\\n\\n/**\\n * Performs a search against the index using lunr query syntax.\\n *\\n * Results will be returned sorted by their score, the most relevant results\\n * will be returned first.  For details on how the score is calculated, please see\\n * the {@link https://lunrjs.com/guides/searching.html#scoring|guide}.\\n *\\n * For more programmatic querying use lunr.Index#query.\\n *\\n * @param {lunr.Index~QueryString} queryString - A string containing a lunr query.\\n * @throws {lunr.QueryParseError} If the passed query string cannot be parsed.\\n * @returns {lunr.Index~Result[]}\\n */\\nlunr.Index.prototype.search = function (queryString) {\\n  return this.query(function (query) {\\n    var parser = new lunr.QueryParser(queryString, query)\\n    parser.parse()\\n  })\\n}\\n\\n/**\\n * A query builder callback provides a query object to be used to express\\n * the query to perform on the index.\\n *\\n * @callback lunr.Index~queryBuilder\\n * @param {lunr.Query} query - The query object to build up.\\n * @this lunr.Query\\n */\\n\\n/**\\n * Performs a query against the index using the yielded lunr.Query object.\\n *\\n * If performing programmatic queries against the index, this method is preferred\\n * over lunr.Index#search so as to avoid the additional query parsing overhead.\\n *\\n * A query object is yielded to the supplied function which should be used to\\n * express the query to be run against the index.\\n *\\n * Note that although this function takes a callback parameter it is _not_ an\\n * asynchronous operation, the callback is just yielded a query object to be\\n * customized.\\n *\\n * @param {lunr.Index~queryBuilder} fn - A function that is used to build the query.\\n * @returns {lunr.Index~Result[]}\\n */\\nlunr.Index.prototype.query = function (fn) {\\n  // for each query clause\\n  // * process terms\\n  // * expand terms from token set\\n  // * find matching documents and metadata\\n  // * get document vectors\\n  // * score documents\\n\\n  var query = new lunr.Query(this.fields),\\n      matchingFields = Object.create(null),\\n      queryVectors = Object.create(null),\\n      termFieldCache = Object.create(null),\\n      requiredMatches = Object.create(null),\\n      prohibitedMatches = Object.create(null)\\n\\n  /*\\n   * To support field level boosts a query vector is created per\\n   * field. An empty vector is eagerly created to support negated\\n   * queries.\\n   */\\n  for (var i = 0; i < this.fields.length; i++) {\\n    queryVectors[this.fields[i]] = new lunr.Vector\\n  }\\n\\n  fn.call(query, query)\\n\\n  for (var i = 0; i < query.clauses.length; i++) {\\n    /*\\n     * Unless the pipeline has been disabled for this term, which is\\n     * the case for terms with wildcards, we need to pass the clause\\n     * term through the search pipeline. A pipeline returns an array\\n     * of processed terms. Pipeline functions may expand the passed\\n     * term, which means we may end up performing multiple index lookups\\n     * for a single query term.\\n     */\\n    var clause = query.clauses[i],\\n        terms = null,\\n        clauseMatches = lunr.Set.empty\\n\\n    if (clause.usePipeline) {\\n      terms = this.pipeline.runString(clause.term, {\\n        fields: clause.fields\\n      })\\n    } else {\\n      terms = [clause.term]\\n    }\\n\\n    for (var m = 0; m < terms.length; m++) {\\n      var term = terms[m]\\n\\n      /*\\n       * Each term returned from the pipeline needs to use the same query\\n       * clause object, e.g. the same boost and or edit distance. The\\n       * simplest way to do this is to re-use the clause object but mutate\\n       * its term property.\\n       */\\n      clause.term = term\\n\\n      /*\\n       * From the term in the clause we create a token set which will then\\n       * be used to intersect the indexes token set to get a list of terms\\n       * to lookup in the inverted index\\n       */\\n      var termTokenSet = lunr.TokenSet.fromClause(clause),\\n          expandedTerms = this.tokenSet.intersect(termTokenSet).toArray()\\n\\n      /*\\n       * If a term marked as required does not exist in the tokenSet it is\\n       * impossible for the search to return any matches. We set all the field\\n       * scoped required matches set to empty and stop examining any further\\n       * clauses.\\n       */\\n      if (expandedTerms.length === 0 && clause.presence === lunr.Query.presence.REQUIRED) {\\n        for (var k = 0; k < clause.fields.length; k++) {\\n          var field = clause.fields[k]\\n          requiredMatches[field] = lunr.Set.empty\\n        }\\n\\n        break\\n      }\\n\\n      for (var j = 0; j < expandedTerms.length; j++) {\\n        /*\\n         * For each term get the posting and termIndex, this is required for\\n         * building the query vector.\\n         */\\n        var expandedTerm = expandedTerms[j],\\n            posting = this.invertedIndex[expandedTerm],\\n            termIndex = posting._index\\n\\n        for (var k = 0; k < clause.fields.length; k++) {\\n          /*\\n           * For each field that this query term is scoped by (by default\\n           * all fields are in scope) we need to get all the document refs\\n           * that have this term in that field.\\n           *\\n           * The posting is the entry in the invertedIndex for the matching\\n           * term from above.\\n           */\\n          var field = clause.fields[k],\\n              fieldPosting = posting[field],\\n              matchingDocumentRefs = Object.keys(fieldPosting),\\n              termField = expandedTerm + \\\"/\\\" + field,\\n              matchingDocumentsSet = new lunr.Set(matchingDocumentRefs)\\n\\n          /*\\n           * if the presence of this term is required ensure that the matching\\n           * documents are added to the set of required matches for this clause.\\n           *\\n           */\\n          if (clause.presence == lunr.Query.presence.REQUIRED) {\\n            clauseMatches = clauseMatches.union(matchingDocumentsSet)\\n\\n            if (requiredMatches[field] === undefined) {\\n              requiredMatches[field] = lunr.Set.complete\\n            }\\n          }\\n\\n          /*\\n           * if the presence of this term is prohibited ensure that the matching\\n           * documents are added to the set of prohibited matches for this field,\\n           * creating that set if it does not yet exist.\\n           */\\n          if (clause.presence == lunr.Query.presence.PROHIBITED) {\\n            if (prohibitedMatches[field] === undefined) {\\n              prohibitedMatches[field] = lunr.Set.empty\\n            }\\n\\n            prohibitedMatches[field] = prohibitedMatches[field].union(matchingDocumentsSet)\\n\\n            /*\\n             * Prohibited matches should not be part of the query vector used for\\n             * similarity scoring and no metadata should be extracted so we continue\\n             * to the next field\\n             */\\n            continue\\n          }\\n\\n          /*\\n           * The query field vector is populated using the termIndex found for\\n           * the term and a unit value with the appropriate boost applied.\\n           * Using upsert because there could already be an entry in the vector\\n           * for the term we are working with. In that case we just add the scores\\n           * together.\\n           */\\n          queryVectors[field].upsert(termIndex, clause.boost, function (a, b) { return a + b })\\n\\n          /**\\n           * If we've already seen this term, field combo then we've already collected\\n           * the matching documents and metadata, no need to go through all that again\\n           */\\n          if (termFieldCache[termField]) {\\n            continue\\n          }\\n\\n          for (var l = 0; l < matchingDocumentRefs.length; l++) {\\n            /*\\n             * All metadata for this term/field/document triple\\n             * are then extracted and collected into an instance\\n             * of lunr.MatchData ready to be returned in the query\\n             * results\\n             */\\n            var matchingDocumentRef = matchingDocumentRefs[l],\\n                matchingFieldRef = new lunr.FieldRef (matchingDocumentRef, field),\\n                metadata = fieldPosting[matchingDocumentRef],\\n                fieldMatch\\n\\n            if ((fieldMatch = matchingFields[matchingFieldRef]) === undefined) {\\n              matchingFields[matchingFieldRef] = new lunr.MatchData (expandedTerm, field, metadata)\\n            } else {\\n              fieldMatch.add(expandedTerm, field, metadata)\\n            }\\n\\n          }\\n\\n          termFieldCache[termField] = true\\n        }\\n      }\\n    }\\n\\n    /**\\n     * If the presence was required we need to update the requiredMatches field sets.\\n     * We do this after all fields for the term have collected their matches because\\n     * the clause terms presence is required in _any_ of the fields not _all_ of the\\n     * fields.\\n     */\\n    if (clause.presence === lunr.Query.presence.REQUIRED) {\\n      for (var k = 0; k < clause.fields.length; k++) {\\n        var field = clause.fields[k]\\n        requiredMatches[field] = requiredMatches[field].intersect(clauseMatches)\\n      }\\n    }\\n  }\\n\\n  /**\\n   * Need to combine the field scoped required and prohibited\\n   * matching documents into a global set of required and prohibited\\n   * matches\\n   */\\n  var allRequiredMatches = lunr.Set.complete,\\n      allProhibitedMatches = lunr.Set.empty\\n\\n  for (var i = 0; i < this.fields.length; i++) {\\n    var field = this.fields[i]\\n\\n    if (requiredMatches[field]) {\\n      allRequiredMatches = allRequiredMatches.intersect(requiredMatches[field])\\n    }\\n\\n    if (prohibitedMatches[field]) {\\n      allProhibitedMatches = allProhibitedMatches.union(prohibitedMatches[field])\\n    }\\n  }\\n\\n  var matchingFieldRefs = Object.keys(matchingFields),\\n      results = [],\\n      matches = Object.create(null)\\n\\n  /*\\n   * If the query is negated (contains only prohibited terms)\\n   * we need to get _all_ fieldRefs currently existing in the\\n   * index. This is only done when we know that the query is\\n   * entirely prohibited terms to avoid any cost of getting all\\n   * fieldRefs unnecessarily.\\n   *\\n   * Additionally, blank MatchData must be created to correctly\\n   * populate the results.\\n   */\\n  if (query.isNegated()) {\\n    matchingFieldRefs = Object.keys(this.fieldVectors)\\n\\n    for (var i = 0; i < matchingFieldRefs.length; i++) {\\n      var matchingFieldRef = matchingFieldRefs[i]\\n      var fieldRef = lunr.FieldRef.fromString(matchingFieldRef)\\n      matchingFields[matchingFieldRef] = new lunr.MatchData\\n    }\\n  }\\n\\n  for (var i = 0; i < matchingFieldRefs.length; i++) {\\n    /*\\n     * Currently we have document fields that match the query, but we\\n     * need to return documents. The matchData and scores are combined\\n     * from multiple fields belonging to the same document.\\n     *\\n     * Scores are calculated by field, using the query vectors created\\n     * above, and combined into a final document score using addition.\\n     */\\n    var fieldRef = lunr.FieldRef.fromString(matchingFieldRefs[i]),\\n        docRef = fieldRef.docRef\\n\\n    if (!allRequiredMatches.contains(docRef)) {\\n      continue\\n    }\\n\\n    if (allProhibitedMatches.contains(docRef)) {\\n      continue\\n    }\\n\\n    var fieldVector = this.fieldVectors[fieldRef],\\n        score = queryVectors[fieldRef.fieldName].similarity(fieldVector),\\n        docMatch\\n\\n    if ((docMatch = matches[docRef]) !== undefined) {\\n      docMatch.score += score\\n      docMatch.matchData.combine(matchingFields[fieldRef])\\n    } else {\\n      var match = {\\n        ref: docRef,\\n        score: score,\\n        matchData: matchingFields[fieldRef]\\n      }\\n      matches[docRef] = match\\n      results.push(match)\\n    }\\n  }\\n\\n  /*\\n   * Sort the results objects by score, highest first.\\n   */\\n  return results.sort(function (a, b) {\\n    return b.score - a.score\\n  })\\n}\\n\\n/**\\n * Prepares the index for JSON serialization.\\n *\\n * The schema for this JSON blob will be described in a\\n * separate JSON schema file.\\n *\\n * @returns {Object}\\n */\\nlunr.Index.prototype.toJSON = function () {\\n  var invertedIndex = Object.keys(this.invertedIndex)\\n    .sort()\\n    .map(function (term) {\\n      return [term, this.invertedIndex[term]]\\n    }, this)\\n\\n  var fieldVectors = Object.keys(this.fieldVectors)\\n    .map(function (ref) {\\n      return [ref, this.fieldVectors[ref].toJSON()]\\n    }, this)\\n\\n  return {\\n    version: lunr.version,\\n    fields: this.fields,\\n    fieldVectors: fieldVectors,\\n    invertedIndex: invertedIndex,\\n    pipeline: this.pipeline.toJSON()\\n  }\\n}\\n\\n/**\\n * Loads a previously serialized lunr.Index\\n *\\n * @param {Object} serializedIndex - A previously serialized lunr.Index\\n * @returns {lunr.Index}\\n */\\nlunr.Index.load = function (serializedIndex) {\\n  var attrs = {},\\n      fieldVectors = {},\\n      serializedVectors = serializedIndex.fieldVectors,\\n      invertedIndex = Object.create(null),\\n      serializedInvertedIndex = serializedIndex.invertedIndex,\\n      tokenSetBuilder = new lunr.TokenSet.Builder,\\n      pipeline = lunr.Pipeline.load(serializedIndex.pipeline)\\n\\n  if (serializedIndex.version != lunr.version) {\\n    lunr.utils.warn(\\\"Version mismatch when loading serialised index. Current version of lunr '\\\" + lunr.version + \\\"' does not match serialized index '\\\" + serializedIndex.version + \\\"'\\\")\\n  }\\n\\n  for (var i = 0; i < serializedVectors.length; i++) {\\n    var tuple = serializedVectors[i],\\n        ref = tuple[0],\\n        elements = tuple[1]\\n\\n    fieldVectors[ref] = new lunr.Vector(elements)\\n  }\\n\\n  for (var i = 0; i < serializedInvertedIndex.length; i++) {\\n    var tuple = serializedInvertedIndex[i],\\n        term = tuple[0],\\n        posting = tuple[1]\\n\\n    tokenSetBuilder.insert(term)\\n    invertedIndex[term] = posting\\n  }\\n\\n  tokenSetBuilder.finish()\\n\\n  attrs.fields = serializedIndex.fields\\n\\n  attrs.fieldVectors = fieldVectors\\n  attrs.invertedIndex = invertedIndex\\n  attrs.tokenSet = tokenSetBuilder.root\\n  attrs.pipeline = pipeline\\n\\n  return new lunr.Index(attrs)\\n}\\n/*!\\n * lunr.Builder\\n * Copyright (C) 2020 Oliver Nightingale\\n */\\n\\n/**\\n * lunr.Builder performs indexing on a set of documents and\\n * returns instances of lunr.Index ready for querying.\\n *\\n * All configuration of the index is done via the builder, the\\n * fields to index, the document reference, the text processing\\n * pipeline and document scoring parameters are all set on the\\n * builder before indexing.\\n *\\n * @constructor\\n * @property {string} _ref - Internal reference to the document reference field.\\n * @property {string[]} _fields - Internal reference to the document fields to index.\\n * @property {object} invertedIndex - The inverted index maps terms to document fields.\\n * @property {object} documentTermFrequencies - Keeps track of document term frequencies.\\n * @property {object} documentLengths - Keeps track of the length of documents added to the index.\\n * @property {lunr.tokenizer} tokenizer - Function for splitting strings into tokens for indexing.\\n * @property {lunr.Pipeline} pipeline - The pipeline performs text processing on tokens before indexing.\\n * @property {lunr.Pipeline} searchPipeline - A pipeline for processing search terms before querying the index.\\n * @property {number} documentCount - Keeps track of the total number of documents indexed.\\n * @property {number} _b - A parameter to control field length normalization, setting this to 0 disabled normalization, 1 fully normalizes field lengths, the default value is 0.75.\\n * @property {number} _k1 - A parameter to control how quickly an increase in term frequency results in term frequency saturation, the default value is 1.2.\\n * @property {number} termIndex - A counter incremented for each unique term, used to identify a terms position in the vector space.\\n * @property {array} metadataWhitelist - A list of metadata keys that have been whitelisted for entry in the index.\\n */\\nlunr.Builder = function () {\\n  this._ref = \\\"id\\\"\\n  this._fields = Object.create(null)\\n  this._documents = Object.create(null)\\n  this.invertedIndex = Object.create(null)\\n  this.fieldTermFrequencies = {}\\n  this.fieldLengths = {}\\n  this.tokenizer = lunr.tokenizer\\n  this.pipeline = new lunr.Pipeline\\n  this.searchPipeline = new lunr.Pipeline\\n  this.documentCount = 0\\n  this._b = 0.75\\n  this._k1 = 1.2\\n  this.termIndex = 0\\n  this.metadataWhitelist = []\\n}\\n\\n/**\\n * Sets the document field used as the document reference. Every document must have this field.\\n * The type of this field in the document should be a string, if it is not a string it will be\\n * coerced into a string by calling toString.\\n *\\n * The default ref is 'id'.\\n *\\n * The ref should _not_ be changed during indexing, it should be set before any documents are\\n * added to the index. Changing it during indexing can lead to inconsistent results.\\n *\\n * @param {string} ref - The name of the reference field in the document.\\n */\\nlunr.Builder.prototype.ref = function (ref) {\\n  this._ref = ref\\n}\\n\\n/**\\n * A function that is used to extract a field from a document.\\n *\\n * Lunr expects a field to be at the top level of a document, if however the field\\n * is deeply nested within a document an extractor function can be used to extract\\n * the right field for indexing.\\n *\\n * @callback fieldExtractor\\n * @param {object} doc - The document being added to the index.\\n * @returns {?(string|object|object[])} obj - The object that will be indexed for this field.\\n * @example <caption>Extracting a nested field</caption>\\n * function (doc) { return doc.nested.field }\\n */\\n\\n/**\\n * Adds a field to the list of document fields that will be indexed. Every document being\\n * indexed should have this field. Null values for this field in indexed documents will\\n * not cause errors but will limit the chance of that document being retrieved by searches.\\n *\\n * All fields should be added before adding documents to the index. Adding fields after\\n * a document has been indexed will have no effect on already indexed documents.\\n *\\n * Fields can be boosted at build time. This allows terms within that field to have more\\n * importance when ranking search results. Use a field boost to specify that matches within\\n * one field are more important than other fields.\\n *\\n * @param {string} fieldName - The name of a field to index in all documents.\\n * @param {object} attributes - Optional attributes associated with this field.\\n * @param {number} [attributes.boost=1] - Boost applied to all terms within this field.\\n * @param {fieldExtractor} [attributes.extractor] - Function to extract a field from a document.\\n * @throws {RangeError} fieldName cannot contain unsupported characters '/'\\n */\\nlunr.Builder.prototype.field = function (fieldName, attributes) {\\n  if (/\\\\//.test(fieldName)) {\\n    throw new RangeError (\\\"Field '\\\" + fieldName + \\\"' contains illegal character '/'\\\")\\n  }\\n\\n  this._fields[fieldName] = attributes || {}\\n}\\n\\n/**\\n * A parameter to tune the amount of field length normalisation that is applied when\\n * calculating relevance scores. A value of 0 will completely disable any normalisation\\n * and a value of 1 will fully normalise field lengths. The default is 0.75. Values of b\\n * will be clamped to the range 0 - 1.\\n *\\n * @param {number} number - The value to set for this tuning parameter.\\n */\\nlunr.Builder.prototype.b = function (number) {\\n  if (number < 0) {\\n    this._b = 0\\n  } else if (number > 1) {\\n    this._b = 1\\n  } else {\\n    this._b = number\\n  }\\n}\\n\\n/**\\n * A parameter that controls the speed at which a rise in term frequency results in term\\n * frequency saturation. The default value is 1.2. Setting this to a higher value will give\\n * slower saturation levels, a lower value will result in quicker saturation.\\n *\\n * @param {number} number - The value to set for this tuning parameter.\\n */\\nlunr.Builder.prototype.k1 = function (number) {\\n  this._k1 = number\\n}\\n\\n/**\\n * Adds a document to the index.\\n *\\n * Before adding fields to the index the index should have been fully setup, with the document\\n * ref and all fields to index already having been specified.\\n *\\n * The document must have a field name as specified by the ref (by default this is 'id') and\\n * it should have all fields defined for indexing, though null or undefined values will not\\n * cause errors.\\n *\\n * Entire documents can be boosted at build time. Applying a boost to a document indicates that\\n * this document should rank higher in search results than other documents.\\n *\\n * @param {object} doc - The document to add to the index.\\n * @param {object} attributes - Optional attributes associated with this document.\\n * @param {number} [attributes.boost=1] - Boost applied to all terms within this document.\\n */\\nlunr.Builder.prototype.add = function (doc, attributes) {\\n  var docRef = doc[this._ref],\\n      fields = Object.keys(this._fields)\\n\\n  this._documents[docRef] = attributes || {}\\n  this.documentCount += 1\\n\\n  for (var i = 0; i < fields.length; i++) {\\n    var fieldName = fields[i],\\n        extractor = this._fields[fieldName].extractor,\\n        field = extractor ? extractor(doc) : doc[fieldName],\\n        tokens = this.tokenizer(field, {\\n          fields: [fieldName]\\n        }),\\n        terms = this.pipeline.run(tokens),\\n        fieldRef = new lunr.FieldRef (docRef, fieldName),\\n        fieldTerms = Object.create(null)\\n\\n    this.fieldTermFrequencies[fieldRef] = fieldTerms\\n    this.fieldLengths[fieldRef] = 0\\n\\n    // store the length of this field for this document\\n    this.fieldLengths[fieldRef] += terms.length\\n\\n    // calculate term frequencies for this field\\n    for (var j = 0; j < terms.length; j++) {\\n      var term = terms[j]\\n\\n      if (fieldTerms[term] == undefined) {\\n        fieldTerms[term] = 0\\n      }\\n\\n      fieldTerms[term] += 1\\n\\n      // add to inverted index\\n      // create an initial posting if one doesn't exist\\n      if (this.invertedIndex[term] == undefined) {\\n        var posting = Object.create(null)\\n        posting[\\\"_index\\\"] = this.termIndex\\n        this.termIndex += 1\\n\\n        for (var k = 0; k < fields.length; k++) {\\n          posting[fields[k]] = Object.create(null)\\n        }\\n\\n        this.invertedIndex[term] = posting\\n      }\\n\\n      // add an entry for this term/fieldName/docRef to the invertedIndex\\n      if (this.invertedIndex[term][fieldName][docRef] == undefined) {\\n        this.invertedIndex[term][fieldName][docRef] = Object.create(null)\\n      }\\n\\n      // store all whitelisted metadata about this token in the\\n      // inverted index\\n      for (var l = 0; l < this.metadataWhitelist.length; l++) {\\n        var metadataKey = this.metadataWhitelist[l],\\n            metadata = term.metadata[metadataKey]\\n\\n        if (this.invertedIndex[term][fieldName][docRef][metadataKey] == undefined) {\\n          this.invertedIndex[term][fieldName][docRef][metadataKey] = []\\n        }\\n\\n        this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata)\\n      }\\n    }\\n\\n  }\\n}\\n\\n/**\\n * Calculates the average document length for this index\\n *\\n * @private\\n */\\nlunr.Builder.prototype.calculateAverageFieldLengths = function () {\\n\\n  var fieldRefs = Object.keys(this.fieldLengths),\\n      numberOfFields = fieldRefs.length,\\n      accumulator = {},\\n      documentsWithField = {}\\n\\n  for (var i = 0; i < numberOfFields; i++) {\\n    var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),\\n        field = fieldRef.fieldName\\n\\n    documentsWithField[field] || (documentsWithField[field] = 0)\\n    documentsWithField[field] += 1\\n\\n    accumulator[field] || (accumulator[field] = 0)\\n    accumulator[field] += this.fieldLengths[fieldRef]\\n  }\\n\\n  var fields = Object.keys(this._fields)\\n\\n  for (var i = 0; i < fields.length; i++) {\\n    var fieldName = fields[i]\\n    accumulator[fieldName] = accumulator[fieldName] / documentsWithField[fieldName]\\n  }\\n\\n  this.averageFieldLength = accumulator\\n}\\n\\n/**\\n * Builds a vector space model of every document using lunr.Vector\\n *\\n * @private\\n */\\nlunr.Builder.prototype.createFieldVectors = function () {\\n  var fieldVectors = {},\\n      fieldRefs = Object.keys(this.fieldTermFrequencies),\\n      fieldRefsLength = fieldRefs.length,\\n      termIdfCache = Object.create(null)\\n\\n  for (var i = 0; i < fieldRefsLength; i++) {\\n    var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),\\n        fieldName = fieldRef.fieldName,\\n        fieldLength = this.fieldLengths[fieldRef],\\n        fieldVector = new lunr.Vector,\\n        termFrequencies = this.fieldTermFrequencies[fieldRef],\\n        terms = Object.keys(termFrequencies),\\n        termsLength = terms.length\\n\\n\\n    var fieldBoost = this._fields[fieldName].boost || 1,\\n        docBoost = this._documents[fieldRef.docRef].boost || 1\\n\\n    for (var j = 0; j < termsLength; j++) {\\n      var term = terms[j],\\n          tf = termFrequencies[term],\\n          termIndex = this.invertedIndex[term]._index,\\n          idf, score, scoreWithPrecision\\n\\n      if (termIdfCache[term] === undefined) {\\n        idf = lunr.idf(this.invertedIndex[term], this.documentCount)\\n        termIdfCache[term] = idf\\n      } else {\\n        idf = termIdfCache[term]\\n      }\\n\\n      score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.averageFieldLength[fieldName])) + tf)\\n      score *= fieldBoost\\n      score *= docBoost\\n      scoreWithPrecision = Math.round(score * 1000) / 1000\\n      // Converts 1.23456789 to 1.234.\\n      // Reducing the precision so that the vectors take up less\\n      // space when serialised. Doing it now so that they behave\\n      // the same before and after serialisation. Also, this is\\n      // the fastest approach to reducing a number's precision in\\n      // JavaScript.\\n\\n      fieldVector.insert(termIndex, scoreWithPrecision)\\n    }\\n\\n    fieldVectors[fieldRef] = fieldVector\\n  }\\n\\n  this.fieldVectors = fieldVectors\\n}\\n\\n/**\\n * Creates a token set of all tokens in the index using lunr.TokenSet\\n *\\n * @private\\n */\\nlunr.Builder.prototype.createTokenSet = function () {\\n  this.tokenSet = lunr.TokenSet.fromArray(\\n    Object.keys(this.invertedIndex).sort()\\n  )\\n}\\n\\n/**\\n * Builds the index, creating an instance of lunr.Index.\\n *\\n * This completes the indexing process and should only be called\\n * once all documents have been added to the index.\\n *\\n * @returns {lunr.Index}\\n */\\nlunr.Builder.prototype.build = function () {\\n  this.calculateAverageFieldLengths()\\n  this.createFieldVectors()\\n  this.createTokenSet()\\n\\n  return new lunr.Index({\\n    invertedIndex: this.invertedIndex,\\n    fieldVectors: this.fieldVectors,\\n    tokenSet: this.tokenSet,\\n    fields: Object.keys(this._fields),\\n    pipeline: this.searchPipeline\\n  })\\n}\\n\\n/**\\n * Applies a plugin to the index builder.\\n *\\n * A plugin is a function that is called with the index builder as its context.\\n * Plugins can be used to customise or extend the behaviour of the index\\n * in some way. A plugin is just a function, that encapsulated the custom\\n * behaviour that should be applied when building the index.\\n *\\n * The plugin function will be called with the index builder as its argument, additional\\n * arguments can also be passed when calling use. The function will be called\\n * with the index builder as its context.\\n *\\n * @param {Function} plugin The plugin to apply.\\n */\\nlunr.Builder.prototype.use = function (fn) {\\n  var args = Array.prototype.slice.call(arguments, 1)\\n  args.unshift(this)\\n  fn.apply(this, args)\\n}\\n/**\\n * Contains and collects metadata about a matching document.\\n * A single instance of lunr.MatchData is returned as part of every\\n * lunr.Index~Result.\\n *\\n * @constructor\\n * @param {string} term - The term this match data is associated with\\n * @param {string} field - The field in which the term was found\\n * @param {object} metadata - The metadata recorded about this term in this field\\n * @property {object} metadata - A cloned collection of metadata associated with this document.\\n * @see {@link lunr.Index~Result}\\n */\\nlunr.MatchData = function (term, field, metadata) {\\n  var clonedMetadata = Object.create(null),\\n      metadataKeys = Object.keys(metadata || {})\\n\\n  // Cloning the metadata to prevent the original\\n  // being mutated during match data combination.\\n  // Metadata is kept in an array within the inverted\\n  // index so cloning the data can be done with\\n  // Array#slice\\n  for (var i = 0; i < metadataKeys.length; i++) {\\n    var key = metadataKeys[i]\\n    clonedMetadata[key] = metadata[key].slice()\\n  }\\n\\n  this.metadata = Object.create(null)\\n\\n  if (term !== undefined) {\\n    this.metadata[term] = Object.create(null)\\n    this.metadata[term][field] = clonedMetadata\\n  }\\n}\\n\\n/**\\n * An instance of lunr.MatchData will be created for every term that matches a\\n * document. However only one instance is required in a lunr.Index~Result. This\\n * method combines metadata from another instance of lunr.MatchData with this\\n * objects metadata.\\n *\\n * @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one.\\n * @see {@link lunr.Index~Result}\\n */\\nlunr.MatchData.prototype.combine = function (otherMatchData) {\\n  var terms = Object.keys(otherMatchData.metadata)\\n\\n  for (var i = 0; i < terms.length; i++) {\\n    var term = terms[i],\\n        fields = Object.keys(otherMatchData.metadata[term])\\n\\n    if (this.metadata[term] == undefined) {\\n      this.metadata[term] = Object.create(null)\\n    }\\n\\n    for (var j = 0; j < fields.length; j++) {\\n      var field = fields[j],\\n          keys = Object.keys(otherMatchData.metadata[term][field])\\n\\n      if (this.metadata[term][field] == undefined) {\\n        this.metadata[term][field] = Object.create(null)\\n      }\\n\\n      for (var k = 0; k < keys.length; k++) {\\n        var key = keys[k]\\n\\n        if (this.metadata[term][field][key] == undefined) {\\n          this.metadata[term][field][key] = otherMatchData.metadata[term][field][key]\\n        } else {\\n          this.metadata[term][field][key] = this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key])\\n        }\\n\\n      }\\n    }\\n  }\\n}\\n\\n/**\\n * Add metadata for a term/field pair to this instance of match data.\\n *\\n * @param {string} term - The term this match data is associated with\\n * @param {string} field - The field in which the term was found\\n * @param {object} metadata - The metadata recorded about this term in this field\\n */\\nlunr.MatchData.prototype.add = function (term, field, metadata) {\\n  if (!(term in this.metadata)) {\\n    this.metadata[term] = Object.create(null)\\n    this.metadata[term][field] = metadata\\n    return\\n  }\\n\\n  if (!(field in this.metadata[term])) {\\n    this.metadata[term][field] = metadata\\n    return\\n  }\\n\\n  var metadataKeys = Object.keys(metadata)\\n\\n  for (var i = 0; i < metadataKeys.length; i++) {\\n    var key = metadataKeys[i]\\n\\n    if (key in this.metadata[term][field]) {\\n      this.metadata[term][field][key] = this.metadata[term][field][key].concat(metadata[key])\\n    } else {\\n      this.metadata[term][field][key] = metadata[key]\\n    }\\n  }\\n}\\n/**\\n * A lunr.Query provides a programmatic way of defining queries to be performed\\n * against a {@link lunr.Index}.\\n *\\n * Prefer constructing a lunr.Query using the {@link lunr.Index#query} method\\n * so the query object is pre-initialized with the right index fields.\\n *\\n * @constructor\\n * @property {lunr.Query~Clause[]} clauses - An array of query clauses.\\n * @property {string[]} allFields - An array of all available fields in a lunr.Index.\\n */\\nlunr.Query = function (allFields) {\\n  this.clauses = []\\n  this.allFields = allFields\\n}\\n\\n/**\\n * Constants for indicating what kind of automatic wildcard insertion will be used when constructing a query clause.\\n *\\n * This allows wildcards to be added to the beginning and end of a term without having to manually do any string\\n * concatenation.\\n *\\n * The wildcard constants can be bitwise combined to select both leading and trailing wildcards.\\n *\\n * @constant\\n * @default\\n * @property {number} wildcard.NONE - The term will have no wildcards inserted, this is the default behaviour\\n * @property {number} wildcard.LEADING - Prepend the term with a wildcard, unless a leading wildcard already exists\\n * @property {number} wildcard.TRAILING - Append a wildcard to the term, unless a trailing wildcard already exists\\n * @see lunr.Query~Clause\\n * @see lunr.Query#clause\\n * @see lunr.Query#term\\n * @example <caption>query term with trailing wildcard</caption>\\n * query.term('foo', { wildcard: lunr.Query.wildcard.TRAILING })\\n * @example <caption>query term with leading and trailing wildcard</caption>\\n * query.term('foo', {\\n *   wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING\\n * })\\n */\\n\\nlunr.Query.wildcard = new String (\\\"*\\\")\\nlunr.Query.wildcard.NONE = 0\\nlunr.Query.wildcard.LEADING = 1\\nlunr.Query.wildcard.TRAILING = 2\\n\\n/**\\n * Constants for indicating what kind of presence a term must have in matching documents.\\n *\\n * @constant\\n * @enum {number}\\n * @see lunr.Query~Clause\\n * @see lunr.Query#clause\\n * @see lunr.Query#term\\n * @example <caption>query term with required presence</caption>\\n * query.term('foo', { presence: lunr.Query.presence.REQUIRED })\\n */\\nlunr.Query.presence = {\\n  /**\\n   * Term's presence in a document is optional, this is the default value.\\n   */\\n  OPTIONAL: 1,\\n\\n  /**\\n   * Term's presence in a document is required, documents that do not contain\\n   * this term will not be returned.\\n   */\\n  REQUIRED: 2,\\n\\n  /**\\n   * Term's presence in a document is prohibited, documents that do contain\\n   * this term will not be returned.\\n   */\\n  PROHIBITED: 3\\n}\\n\\n/**\\n * A single clause in a {@link lunr.Query} contains a term and details on how to\\n * match that term against a {@link lunr.Index}.\\n *\\n * @typedef {Object} lunr.Query~Clause\\n * @property {string[]} fields - The fields in an index this clause should be matched against.\\n * @property {number} [boost=1] - Any boost that should be applied when matching this clause.\\n * @property {number} [editDistance] - Whether the term should have fuzzy matching applied, and how fuzzy the match should be.\\n * @property {boolean} [usePipeline] - Whether the term should be passed through the search pipeline.\\n * @property {number} [wildcard=lunr.Query.wildcard.NONE] - Whether the term should have wildcards appended or prepended.\\n * @property {number} [presence=lunr.Query.presence.OPTIONAL] - The terms presence in any matching documents.\\n */\\n\\n/**\\n * Adds a {@link lunr.Query~Clause} to this query.\\n *\\n * Unless the clause contains the fields to be matched all fields will be matched. In addition\\n * a default boost of 1 is applied to the clause.\\n *\\n * @param {lunr.Query~Clause} clause - The clause to add to this query.\\n * @see lunr.Query~Clause\\n * @returns {lunr.Query}\\n */\\nlunr.Query.prototype.clause = function (clause) {\\n  if (!('fields' in clause)) {\\n    clause.fields = this.allFields\\n  }\\n\\n  if (!('boost' in clause)) {\\n    clause.boost = 1\\n  }\\n\\n  if (!('usePipeline' in clause)) {\\n    clause.usePipeline = true\\n  }\\n\\n  if (!('wildcard' in clause)) {\\n    clause.wildcard = lunr.Query.wildcard.NONE\\n  }\\n\\n  if ((clause.wildcard & lunr.Query.wildcard.LEADING) && (clause.term.charAt(0) != lunr.Query.wildcard)) {\\n    clause.term = \\\"*\\\" + clause.term\\n  }\\n\\n  if ((clause.wildcard & lunr.Query.wildcard.TRAILING) && (clause.term.slice(-1) != lunr.Query.wildcard)) {\\n    clause.term = \\\"\\\" + clause.term + \\\"*\\\"\\n  }\\n\\n  if (!('presence' in clause)) {\\n    clause.presence = lunr.Query.presence.OPTIONAL\\n  }\\n\\n  this.clauses.push(clause)\\n\\n  return this\\n}\\n\\n/**\\n * A negated query is one in which every clause has a presence of\\n * prohibited. These queries require some special processing to return\\n * the expected results.\\n *\\n * @returns boolean\\n */\\nlunr.Query.prototype.isNegated = function () {\\n  for (var i = 0; i < this.clauses.length; i++) {\\n    if (this.clauses[i].presence != lunr.Query.presence.PROHIBITED) {\\n      return false\\n    }\\n  }\\n\\n  return true\\n}\\n\\n/**\\n * Adds a term to the current query, under the covers this will create a {@link lunr.Query~Clause}\\n * to the list of clauses that make up this query.\\n *\\n * The term is used as is, i.e. no tokenization will be performed by this method. Instead conversion\\n * to a token or token-like string should be done before calling this method.\\n *\\n * The term will be converted to a string by calling `toString`. Multiple terms can be passed as an\\n * array, each term in the array will share the same options.\\n *\\n * @param {object|object[]} term - The term(s) to add to the query.\\n * @param {object} [options] - Any additional properties to add to the query clause.\\n * @returns {lunr.Query}\\n * @see lunr.Query#clause\\n * @see lunr.Query~Clause\\n * @example <caption>adding a single term to a query</caption>\\n * query.term(\\\"foo\\\")\\n * @example <caption>adding a single term to a query and specifying search fields, term boost and automatic trailing wildcard</caption>\\n * query.term(\\\"foo\\\", {\\n *   fields: [\\\"title\\\"],\\n *   boost: 10,\\n *   wildcard: lunr.Query.wildcard.TRAILING\\n * })\\n * @example <caption>using lunr.tokenizer to convert a string to tokens before using them as terms</caption>\\n * query.term(lunr.tokenizer(\\\"foo bar\\\"))\\n */\\nlunr.Query.prototype.term = function (term, options) {\\n  if (Array.isArray(term)) {\\n    term.forEach(function (t) { this.term(t, lunr.utils.clone(options)) }, this)\\n    return this\\n  }\\n\\n  var clause = options || {}\\n  clause.term = term.toString()\\n\\n  this.clause(clause)\\n\\n  return this\\n}\\nlunr.QueryParseError = function (message, start, end) {\\n  this.name = \\\"QueryParseError\\\"\\n  this.message = message\\n  this.start = start\\n  this.end = end\\n}\\n\\nlunr.QueryParseError.prototype = new Error\\nlunr.QueryLexer = function (str) {\\n  this.lexemes = []\\n  this.str = str\\n  this.length = str.length\\n  this.pos = 0\\n  this.start = 0\\n  this.escapeCharPositions = []\\n}\\n\\nlunr.QueryLexer.prototype.run = function () {\\n  var state = lunr.QueryLexer.lexText\\n\\n  while (state) {\\n    state = state(this)\\n  }\\n}\\n\\nlunr.QueryLexer.prototype.sliceString = function () {\\n  var subSlices = [],\\n      sliceStart = this.start,\\n      sliceEnd = this.pos\\n\\n  for (var i = 0; i < this.escapeCharPositions.length; i++) {\\n    sliceEnd = this.escapeCharPositions[i]\\n    subSlices.push(this.str.slice(sliceStart, sliceEnd))\\n    sliceStart = sliceEnd + 1\\n  }\\n\\n  subSlices.push(this.str.slice(sliceStart, this.pos))\\n  this.escapeCharPositions.length = 0\\n\\n  return subSlices.join('')\\n}\\n\\nlunr.QueryLexer.prototype.emit = function (type) {\\n  this.lexemes.push({\\n    type: type,\\n    str: this.sliceString(),\\n    start: this.start,\\n    end: this.pos\\n  })\\n\\n  this.start = this.pos\\n}\\n\\nlunr.QueryLexer.prototype.escapeCharacter = function () {\\n  this.escapeCharPositions.push(this.pos - 1)\\n  this.pos += 1\\n}\\n\\nlunr.QueryLexer.prototype.next = function () {\\n  if (this.pos >= this.length) {\\n    return lunr.QueryLexer.EOS\\n  }\\n\\n  var char = this.str.charAt(this.pos)\\n  this.pos += 1\\n  return char\\n}\\n\\nlunr.QueryLexer.prototype.width = function () {\\n  return this.pos - this.start\\n}\\n\\nlunr.QueryLexer.prototype.ignore = function () {\\n  if (this.start == this.pos) {\\n    this.pos += 1\\n  }\\n\\n  this.start = this.pos\\n}\\n\\nlunr.QueryLexer.prototype.backup = function () {\\n  this.pos -= 1\\n}\\n\\nlunr.QueryLexer.prototype.acceptDigitRun = function () {\\n  var char, charCode\\n\\n  do {\\n    char = this.next()\\n    charCode = char.charCodeAt(0)\\n  } while (charCode > 47 && charCode < 58)\\n\\n  if (char != lunr.QueryLexer.EOS) {\\n    this.backup()\\n  }\\n}\\n\\nlunr.QueryLexer.prototype.more = function () {\\n  return this.pos < this.length\\n}\\n\\nlunr.QueryLexer.EOS = 'EOS'\\nlunr.QueryLexer.FIELD = 'FIELD'\\nlunr.QueryLexer.TERM = 'TERM'\\nlunr.QueryLexer.EDIT_DISTANCE = 'EDIT_DISTANCE'\\nlunr.QueryLexer.BOOST = 'BOOST'\\nlunr.QueryLexer.PRESENCE = 'PRESENCE'\\n\\nlunr.QueryLexer.lexField = function (lexer) {\\n  lexer.backup()\\n  lexer.emit(lunr.QueryLexer.FIELD)\\n  lexer.ignore()\\n  return lunr.QueryLexer.lexText\\n}\\n\\nlunr.QueryLexer.lexTerm = function (lexer) {\\n  if (lexer.width() > 1) {\\n    lexer.backup()\\n    lexer.emit(lunr.QueryLexer.TERM)\\n  }\\n\\n  lexer.ignore()\\n\\n  if (lexer.more()) {\\n    return lunr.QueryLexer.lexText\\n  }\\n}\\n\\nlunr.QueryLexer.lexEditDistance = function (lexer) {\\n  lexer.ignore()\\n  lexer.acceptDigitRun()\\n  lexer.emit(lunr.QueryLexer.EDIT_DISTANCE)\\n  return lunr.QueryLexer.lexText\\n}\\n\\nlunr.QueryLexer.lexBoost = function (lexer) {\\n  lexer.ignore()\\n  lexer.acceptDigitRun()\\n  lexer.emit(lunr.QueryLexer.BOOST)\\n  return lunr.QueryLexer.lexText\\n}\\n\\nlunr.QueryLexer.lexEOS = function (lexer) {\\n  if (lexer.width() > 0) {\\n    lexer.emit(lunr.QueryLexer.TERM)\\n  }\\n}\\n\\n// This matches the separator used when tokenising fields\\n// within a document. These should match otherwise it is\\n// not possible to search for some tokens within a document.\\n//\\n// It is possible for the user to change the separator on the\\n// tokenizer so it _might_ clash with any other of the special\\n// characters already used within the search string, e.g. :.\\n//\\n// This means that it is possible to change the separator in\\n// such a way that makes some words unsearchable using a search\\n// string.\\nlunr.QueryLexer.termSeparator = lunr.tokenizer.separator\\n\\nlunr.QueryLexer.lexText = function (lexer) {\\n  while (true) {\\n    var char = lexer.next()\\n\\n    if (char == lunr.QueryLexer.EOS) {\\n      return lunr.QueryLexer.lexEOS\\n    }\\n\\n    // Escape character is '\\\\'\\n    if (char.charCodeAt(0) == 92) {\\n      lexer.escapeCharacter()\\n      continue\\n    }\\n\\n    if (char == \\\":\\\") {\\n      return lunr.QueryLexer.lexField\\n    }\\n\\n    if (char == \\\"~\\\") {\\n      lexer.backup()\\n      if (lexer.width() > 0) {\\n        lexer.emit(lunr.QueryLexer.TERM)\\n      }\\n      return lunr.QueryLexer.lexEditDistance\\n    }\\n\\n    if (char == \\\"^\\\") {\\n      lexer.backup()\\n      if (lexer.width() > 0) {\\n        lexer.emit(lunr.QueryLexer.TERM)\\n      }\\n      return lunr.QueryLexer.lexBoost\\n    }\\n\\n    // \\\"+\\\" indicates term presence is required\\n    // checking for length to ensure that only\\n    // leading \\\"+\\\" are considered\\n    if (char == \\\"+\\\" && lexer.width() === 1) {\\n      lexer.emit(lunr.QueryLexer.PRESENCE)\\n      return lunr.QueryLexer.lexText\\n    }\\n\\n    // \\\"-\\\" indicates term presence is prohibited\\n    // checking for length to ensure that only\\n    // leading \\\"-\\\" are considered\\n    if (char == \\\"-\\\" && lexer.width() === 1) {\\n      lexer.emit(lunr.QueryLexer.PRESENCE)\\n      return lunr.QueryLexer.lexText\\n    }\\n\\n    if (char.match(lunr.QueryLexer.termSeparator)) {\\n      return lunr.QueryLexer.lexTerm\\n    }\\n  }\\n}\\n\\nlunr.QueryParser = function (str, query) {\\n  this.lexer = new lunr.QueryLexer (str)\\n  this.query = query\\n  this.currentClause = {}\\n  this.lexemeIdx = 0\\n}\\n\\nlunr.QueryParser.prototype.parse = function () {\\n  this.lexer.run()\\n  this.lexemes = this.lexer.lexemes\\n\\n  var state = lunr.QueryParser.parseClause\\n\\n  while (state) {\\n    state = state(this)\\n  }\\n\\n  return this.query\\n}\\n\\nlunr.QueryParser.prototype.peekLexeme = function () {\\n  return this.lexemes[this.lexemeIdx]\\n}\\n\\nlunr.QueryParser.prototype.consumeLexeme = function () {\\n  var lexeme = this.peekLexeme()\\n  this.lexemeIdx += 1\\n  return lexeme\\n}\\n\\nlunr.QueryParser.prototype.nextClause = function () {\\n  var completedClause = this.currentClause\\n  this.query.clause(completedClause)\\n  this.currentClause = {}\\n}\\n\\nlunr.QueryParser.parseClause = function (parser) {\\n  var lexeme = parser.peekLexeme()\\n\\n  if (lexeme == undefined) {\\n    return\\n  }\\n\\n  switch (lexeme.type) {\\n    case lunr.QueryLexer.PRESENCE:\\n      return lunr.QueryParser.parsePresence\\n    case lunr.QueryLexer.FIELD:\\n      return lunr.QueryParser.parseField\\n    case lunr.QueryLexer.TERM:\\n      return lunr.QueryParser.parseTerm\\n    default:\\n      var errorMessage = \\\"expected either a field or a term, found \\\" + lexeme.type\\n\\n      if (lexeme.str.length >= 1) {\\n        errorMessage += \\\" with value '\\\" + lexeme.str + \\\"'\\\"\\n      }\\n\\n      throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\\n  }\\n}\\n\\nlunr.QueryParser.parsePresence = function (parser) {\\n  var lexeme = parser.consumeLexeme()\\n\\n  if (lexeme == undefined) {\\n    return\\n  }\\n\\n  switch (lexeme.str) {\\n    case \\\"-\\\":\\n      parser.currentClause.presence = lunr.Query.presence.PROHIBITED\\n      break\\n    case \\\"+\\\":\\n      parser.currentClause.presence = lunr.Query.presence.REQUIRED\\n      break\\n    default:\\n      var errorMessage = \\\"unrecognised presence operator'\\\" + lexeme.str + \\\"'\\\"\\n      throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\\n  }\\n\\n  var nextLexeme = parser.peekLexeme()\\n\\n  if (nextLexeme == undefined) {\\n    var errorMessage = \\\"expecting term or field, found nothing\\\"\\n    throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\\n  }\\n\\n  switch (nextLexeme.type) {\\n    case lunr.QueryLexer.FIELD:\\n      return lunr.QueryParser.parseField\\n    case lunr.QueryLexer.TERM:\\n      return lunr.QueryParser.parseTerm\\n    default:\\n      var errorMessage = \\\"expecting term or field, found '\\\" + nextLexeme.type + \\\"'\\\"\\n      throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\\n  }\\n}\\n\\nlunr.QueryParser.parseField = function (parser) {\\n  var lexeme = parser.consumeLexeme()\\n\\n  if (lexeme == undefined) {\\n    return\\n  }\\n\\n  if (parser.query.allFields.indexOf(lexeme.str) == -1) {\\n    var possibleFields = parser.query.allFields.map(function (f) { return \\\"'\\\" + f + \\\"'\\\" }).join(', '),\\n        errorMessage = \\\"unrecognised field '\\\" + lexeme.str + \\\"', possible fields: \\\" + possibleFields\\n\\n    throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\\n  }\\n\\n  parser.currentClause.fields = [lexeme.str]\\n\\n  var nextLexeme = parser.peekLexeme()\\n\\n  if (nextLexeme == undefined) {\\n    var errorMessage = \\\"expecting term, found nothing\\\"\\n    throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\\n  }\\n\\n  switch (nextLexeme.type) {\\n    case lunr.QueryLexer.TERM:\\n      return lunr.QueryParser.parseTerm\\n    default:\\n      var errorMessage = \\\"expecting term, found '\\\" + nextLexeme.type + \\\"'\\\"\\n      throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\\n  }\\n}\\n\\nlunr.QueryParser.parseTerm = function (parser) {\\n  var lexeme = parser.consumeLexeme()\\n\\n  if (lexeme == undefined) {\\n    return\\n  }\\n\\n  parser.currentClause.term = lexeme.str.toLowerCase()\\n\\n  if (lexeme.str.indexOf(\\\"*\\\") != -1) {\\n    parser.currentClause.usePipeline = false\\n  }\\n\\n  var nextLexeme = parser.peekLexeme()\\n\\n  if (nextLexeme == undefined) {\\n    parser.nextClause()\\n    return\\n  }\\n\\n  switch (nextLexeme.type) {\\n    case lunr.QueryLexer.TERM:\\n      parser.nextClause()\\n      return lunr.QueryParser.parseTerm\\n    case lunr.QueryLexer.FIELD:\\n      parser.nextClause()\\n      return lunr.QueryParser.parseField\\n    case lunr.QueryLexer.EDIT_DISTANCE:\\n      return lunr.QueryParser.parseEditDistance\\n    case lunr.QueryLexer.BOOST:\\n      return lunr.QueryParser.parseBoost\\n    case lunr.QueryLexer.PRESENCE:\\n      parser.nextClause()\\n      return lunr.QueryParser.parsePresence\\n    default:\\n      var errorMessage = \\\"Unexpected lexeme type '\\\" + nextLexeme.type + \\\"'\\\"\\n      throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\\n  }\\n}\\n\\nlunr.QueryParser.parseEditDistance = function (parser) {\\n  var lexeme = parser.consumeLexeme()\\n\\n  if (lexeme == undefined) {\\n    return\\n  }\\n\\n  var editDistance = parseInt(lexeme.str, 10)\\n\\n  if (isNaN(editDistance)) {\\n    var errorMessage = \\\"edit distance must be numeric\\\"\\n    throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\\n  }\\n\\n  parser.currentClause.editDistance = editDistance\\n\\n  var nextLexeme = parser.peekLexeme()\\n\\n  if (nextLexeme == undefined) {\\n    parser.nextClause()\\n    return\\n  }\\n\\n  switch (nextLexeme.type) {\\n    case lunr.QueryLexer.TERM:\\n      parser.nextClause()\\n      return lunr.QueryParser.parseTerm\\n    case lunr.QueryLexer.FIELD:\\n      parser.nextClause()\\n      return lunr.QueryParser.parseField\\n    case lunr.QueryLexer.EDIT_DISTANCE:\\n      return lunr.QueryParser.parseEditDistance\\n    case lunr.QueryLexer.BOOST:\\n      return lunr.QueryParser.parseBoost\\n    case lunr.QueryLexer.PRESENCE:\\n      parser.nextClause()\\n      return lunr.QueryParser.parsePresence\\n    default:\\n      var errorMessage = \\\"Unexpected lexeme type '\\\" + nextLexeme.type + \\\"'\\\"\\n      throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\\n  }\\n}\\n\\nlunr.QueryParser.parseBoost = function (parser) {\\n  var lexeme = parser.consumeLexeme()\\n\\n  if (lexeme == undefined) {\\n    return\\n  }\\n\\n  var boost = parseInt(lexeme.str, 10)\\n\\n  if (isNaN(boost)) {\\n    var errorMessage = \\\"boost must be numeric\\\"\\n    throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\\n  }\\n\\n  parser.currentClause.boost = boost\\n\\n  var nextLexeme = parser.peekLexeme()\\n\\n  if (nextLexeme == undefined) {\\n    parser.nextClause()\\n    return\\n  }\\n\\n  switch (nextLexeme.type) {\\n    case lunr.QueryLexer.TERM:\\n      parser.nextClause()\\n      return lunr.QueryParser.parseTerm\\n    case lunr.QueryLexer.FIELD:\\n      parser.nextClause()\\n      return lunr.QueryParser.parseField\\n    case lunr.QueryLexer.EDIT_DISTANCE:\\n      return lunr.QueryParser.parseEditDistance\\n    case lunr.QueryLexer.BOOST:\\n      return lunr.QueryParser.parseBoost\\n    case lunr.QueryLexer.PRESENCE:\\n      parser.nextClause()\\n      return lunr.QueryParser.parsePresence\\n    default:\\n      var errorMessage = \\\"Unexpected lexeme type '\\\" + nextLexeme.type + \\\"'\\\"\\n      throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\\n  }\\n}\\n\\n  /**\\n   * export the module via AMD, CommonJS or as a browser global\\n   * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\\n   */\\n  ;(function (root, factory) {\\n    if (true) {\\n      // AMD. Register as an anonymous module.\\n      !(__WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) :\\n\\t\\t__WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__))\\n    } else {}\\n  }(this, function () {\\n    /**\\n     * Just return a value to define the module export.\\n     * This example returns an object, but the module\\n     * can return a function as the exported value.\\n     */\\n    return lunr\\n  }))\\n})();\\n\\n\\n//# sourceURL=webpack:///../node_modules/lunr/lunr.js?\");\n\n/***/ }),\n\n/***/ \"./default/assets/css/main.sass\":\n/*!**************************************!*\\\n  !*** ./default/assets/css/main.sass ***!\n  \\**************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n// extracted by mini-css-extract-plugin\\n\\n\\n//# sourceURL=webpack:///./default/assets/css/main.sass?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/bootstrap.ts\":\n/*!********************************************!*\\\n  !*** ./default/assets/js/src/bootstrap.ts ***!\n  \\********************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _typedoc_Application__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typedoc/Application */ \\\"./default/assets/js/src/typedoc/Application.ts\\\");\\n/* harmony import */ var _typedoc_components_MenuHighlight__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./typedoc/components/MenuHighlight */ \\\"./default/assets/js/src/typedoc/components/MenuHighlight.ts\\\");\\n/* harmony import */ var _typedoc_components_Search__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./typedoc/components/Search */ \\\"./default/assets/js/src/typedoc/components/Search.ts\\\");\\n/* harmony import */ var _typedoc_components_Signature__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./typedoc/components/Signature */ \\\"./default/assets/js/src/typedoc/components/Signature.ts\\\");\\n/* harmony import */ var _typedoc_components_Toggle__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./typedoc/components/Toggle */ \\\"./default/assets/js/src/typedoc/components/Toggle.ts\\\");\\n/* harmony import */ var _typedoc_components_Filter__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./typedoc/components/Filter */ \\\"./default/assets/js/src/typedoc/components/Filter.ts\\\");\\n/* harmony import */ var _css_main_sass__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../css/main.sass */ \\\"./default/assets/css/main.sass\\\");\\n\\n\\n\\n\\n\\n\\n\\n(0,_typedoc_components_Search__WEBPACK_IMPORTED_MODULE_2__.initSearch)();\\n(0,_typedoc_Application__WEBPACK_IMPORTED_MODULE_0__.registerComponent)(_typedoc_components_MenuHighlight__WEBPACK_IMPORTED_MODULE_1__.MenuHighlight, \\\".menu-highlight\\\");\\n(0,_typedoc_Application__WEBPACK_IMPORTED_MODULE_0__.registerComponent)(_typedoc_components_Signature__WEBPACK_IMPORTED_MODULE_3__.Signature, \\\".tsd-signatures\\\");\\n(0,_typedoc_Application__WEBPACK_IMPORTED_MODULE_0__.registerComponent)(_typedoc_components_Toggle__WEBPACK_IMPORTED_MODULE_4__.Toggle, \\\"a[data-toggle]\\\");\\nif (_typedoc_components_Filter__WEBPACK_IMPORTED_MODULE_5__.Filter.isSupported()) {\\n    (0,_typedoc_Application__WEBPACK_IMPORTED_MODULE_0__.registerComponent)(_typedoc_components_Filter__WEBPACK_IMPORTED_MODULE_5__.Filter, \\\"#tsd-filter\\\");\\n}\\nelse {\\n    document.documentElement.classList.add(\\\"no-filter\\\");\\n}\\nvar app = new _typedoc_Application__WEBPACK_IMPORTED_MODULE_0__.Application();\\nObject.defineProperty(window, \\\"app\\\", { value: app });\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/bootstrap.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/Application.ts\":\n/*!******************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/Application.ts ***!\n  \\******************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"registerComponent\\\": () => /* binding */ registerComponent,\\n/* harmony export */   \\\"Application\\\": () => /* binding */ Application\\n/* harmony export */ });\\n/**\\n * List of all known components.\\n */\\nvar components = [];\\n/**\\n * Register a new component.\\n */\\nfunction registerComponent(constructor, selector) {\\n    components.push({\\n        selector: selector,\\n        constructor: constructor,\\n    });\\n}\\n/**\\n * TypeDoc application class.\\n */\\nvar Application = /** @class */ (function () {\\n    /**\\n     * Create a new Application instance.\\n     */\\n    function Application() {\\n        this.createComponents(document.body);\\n    }\\n    /**\\n     * Create all components beneath the given jQuery element.\\n     */\\n    Application.prototype.createComponents = function (context) {\\n        components.forEach(function (c) {\\n            context.querySelectorAll(c.selector).forEach(function (el) {\\n                if (!el.dataset.hasInstance) {\\n                    new c.constructor({ el: el });\\n                    el.dataset.hasInstance = String(true);\\n                }\\n            });\\n        });\\n    };\\n    return Application;\\n}());\\n\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/Application.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/Component.ts\":\n/*!****************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/Component.ts ***!\n  \\****************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"Component\\\": () => /* binding */ Component\\n/* harmony export */ });\\n/**\\n * TypeDoc component class.\\n */\\nvar Component = /** @class */ (function () {\\n    function Component(options) {\\n        this.el = options.el;\\n    }\\n    return Component;\\n}());\\n\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/Component.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/EventTarget.ts\":\n/*!******************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/EventTarget.ts ***!\n  \\******************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"EventTarget\\\": () => /* binding */ EventTarget\\n/* harmony export */ });\\n/**\\n * TypeDoc event target class.\\n */\\nvar EventTarget = /** @class */ (function () {\\n    function EventTarget() {\\n        this.listeners = {};\\n    }\\n    EventTarget.prototype.addEventListener = function (type, callback) {\\n        if (!(type in this.listeners)) {\\n            this.listeners[type] = [];\\n        }\\n        this.listeners[type].push(callback);\\n    };\\n    EventTarget.prototype.removeEventListener = function (type, callback) {\\n        if (!(type in this.listeners)) {\\n            return;\\n        }\\n        var stack = this.listeners[type];\\n        for (var i = 0, l = stack.length; i < l; i++) {\\n            if (stack[i] === callback) {\\n                stack.splice(i, 1);\\n                return;\\n            }\\n        }\\n    };\\n    EventTarget.prototype.dispatchEvent = function (event) {\\n        if (!(event.type in this.listeners)) {\\n            return true;\\n        }\\n        var stack = this.listeners[event.type].slice();\\n        for (var i = 0, l = stack.length; i < l; i++) {\\n            stack[i].call(this, event);\\n        }\\n        return !event.defaultPrevented;\\n    };\\n    return EventTarget;\\n}());\\n\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/EventTarget.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/components/Filter.ts\":\n/*!************************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/components/Filter.ts ***!\n  \\************************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"Filter\\\": () => /* binding */ Filter\\n/* harmony export */ });\\n/* harmony import */ var _Component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Component */ \\\"./default/assets/js/src/typedoc/Component.ts\\\");\\n/* harmony import */ var _utils_pointer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/pointer */ \\\"./default/assets/js/src/typedoc/utils/pointer.ts\\\");\\nvar __extends = (undefined && undefined.__extends) || (function () {\\n    var extendStatics = function (d, b) {\\n        extendStatics = Object.setPrototypeOf ||\\n            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\\n            function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\\n        return extendStatics(d, b);\\n    };\\n    return function (d, b) {\\n        extendStatics(d, b);\\n        function __() { this.constructor = d; }\\n        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\\n    };\\n})();\\n\\n\\nvar FilterItem = /** @class */ (function () {\\n    function FilterItem(key, value) {\\n        this.key = key;\\n        this.value = value;\\n        this.defaultValue = value;\\n        this.initialize();\\n        if (window.localStorage[this.key]) {\\n            this.setValue(this.fromLocalStorage(window.localStorage[this.key]));\\n        }\\n    }\\n    FilterItem.prototype.initialize = function () { };\\n    FilterItem.prototype.setValue = function (value) {\\n        if (this.value == value)\\n            return;\\n        var oldValue = this.value;\\n        this.value = value;\\n        window.localStorage[this.key] = this.toLocalStorage(value);\\n        this.handleValueChange(oldValue, value);\\n    };\\n    return FilterItem;\\n}());\\nvar FilterItemCheckbox = /** @class */ (function (_super) {\\n    __extends(FilterItemCheckbox, _super);\\n    function FilterItemCheckbox() {\\n        return _super !== null && _super.apply(this, arguments) || this;\\n    }\\n    FilterItemCheckbox.prototype.initialize = function () {\\n        var _this = this;\\n        var checkbox = document.querySelector(\\\"#tsd-filter-\\\" + this.key);\\n        if (!checkbox)\\n            return;\\n        this.checkbox = checkbox;\\n        this.checkbox.addEventListener(\\\"change\\\", function () {\\n            _this.setValue(_this.checkbox.checked);\\n        });\\n    };\\n    FilterItemCheckbox.prototype.handleValueChange = function (oldValue, newValue) {\\n        if (!this.checkbox)\\n            return;\\n        this.checkbox.checked = this.value;\\n        document.documentElement.classList.toggle(\\\"toggle-\\\" + this.key, this.value != this.defaultValue);\\n    };\\n    FilterItemCheckbox.prototype.fromLocalStorage = function (value) {\\n        return value == \\\"true\\\";\\n    };\\n    FilterItemCheckbox.prototype.toLocalStorage = function (value) {\\n        return value ? \\\"true\\\" : \\\"false\\\";\\n    };\\n    return FilterItemCheckbox;\\n}(FilterItem));\\nvar FilterItemSelect = /** @class */ (function (_super) {\\n    __extends(FilterItemSelect, _super);\\n    function FilterItemSelect() {\\n        return _super !== null && _super.apply(this, arguments) || this;\\n    }\\n    FilterItemSelect.prototype.initialize = function () {\\n        var _this = this;\\n        document.documentElement.classList.add(\\\"toggle-\\\" + this.key + this.value);\\n        var select = document.querySelector(\\\"#tsd-filter-\\\" + this.key);\\n        if (!select)\\n            return;\\n        this.select = select;\\n        var onActivate = function () {\\n            _this.select.classList.add(\\\"active\\\");\\n        };\\n        var onDeactivate = function () {\\n            _this.select.classList.remove(\\\"active\\\");\\n        };\\n        this.select.addEventListener(_utils_pointer__WEBPACK_IMPORTED_MODULE_1__.pointerDown, onActivate);\\n        this.select.addEventListener(\\\"mouseover\\\", onActivate);\\n        this.select.addEventListener(\\\"mouseleave\\\", onDeactivate);\\n        this.select.querySelectorAll(\\\"li\\\").forEach(function (el) {\\n            el.addEventListener(_utils_pointer__WEBPACK_IMPORTED_MODULE_1__.pointerUp, function (e) {\\n                select.classList.remove(\\\"active\\\");\\n                _this.setValue(e.target.dataset.value || \\\"\\\");\\n            });\\n        });\\n        document.addEventListener(_utils_pointer__WEBPACK_IMPORTED_MODULE_1__.pointerDown, function (e) {\\n            if (_this.select.contains(e.target))\\n                return;\\n            _this.select.classList.remove(\\\"active\\\");\\n        });\\n    };\\n    FilterItemSelect.prototype.handleValueChange = function (oldValue, newValue) {\\n        this.select.querySelectorAll(\\\"li.selected\\\").forEach(function (el) {\\n            el.classList.remove(\\\"selected\\\");\\n        });\\n        var selected = this.select.querySelector('li[data-value=\\\"' + newValue + '\\\"]');\\n        var label = this.select.querySelector(\\\".tsd-select-label\\\");\\n        if (selected && label) {\\n            selected.classList.add(\\\"selected\\\");\\n            label.textContent = selected.textContent;\\n        }\\n        document.documentElement.classList.remove(\\\"toggle-\\\" + oldValue);\\n        document.documentElement.classList.add(\\\"toggle-\\\" + newValue);\\n    };\\n    FilterItemSelect.prototype.fromLocalStorage = function (value) {\\n        return value;\\n    };\\n    FilterItemSelect.prototype.toLocalStorage = function (value) {\\n        return value;\\n    };\\n    return FilterItemSelect;\\n}(FilterItem));\\nvar Filter = /** @class */ (function (_super) {\\n    __extends(Filter, _super);\\n    function Filter(options) {\\n        var _this = _super.call(this, options) || this;\\n        _this.optionVisibility = new FilterItemSelect(\\\"visibility\\\", \\\"private\\\");\\n        _this.optionInherited = new FilterItemCheckbox(\\\"inherited\\\", true);\\n        _this.optionExternals = new FilterItemCheckbox(\\\"externals\\\", true);\\n        return _this;\\n    }\\n    Filter.isSupported = function () {\\n        try {\\n            return typeof window.localStorage != \\\"undefined\\\";\\n        }\\n        catch (e) {\\n            return false;\\n        }\\n    };\\n    return Filter;\\n}(_Component__WEBPACK_IMPORTED_MODULE_0__.Component));\\n\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/components/Filter.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/components/MenuHighlight.ts\":\n/*!*******************************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/components/MenuHighlight.ts ***!\n  \\*******************************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"MenuHighlight\\\": () => /* binding */ MenuHighlight\\n/* harmony export */ });\\n/* harmony import */ var _Component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Component */ \\\"./default/assets/js/src/typedoc/Component.ts\\\");\\n/* harmony import */ var _services_Viewport__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/Viewport */ \\\"./default/assets/js/src/typedoc/services/Viewport.ts\\\");\\nvar __extends = (undefined && undefined.__extends) || (function () {\\n    var extendStatics = function (d, b) {\\n        extendStatics = Object.setPrototypeOf ||\\n            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\\n            function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\\n        return extendStatics(d, b);\\n    };\\n    return function (d, b) {\\n        extendStatics(d, b);\\n        function __() { this.constructor = d; }\\n        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\\n    };\\n})();\\n\\n\\n/**\\n * Manages the sticky state of the navigation and moves the highlight\\n * to the current navigation item.\\n */\\nvar MenuHighlight = /** @class */ (function (_super) {\\n    __extends(MenuHighlight, _super);\\n    /**\\n     * Create a new MenuHighlight instance.\\n     *\\n     * @param options  Backbone view constructor options.\\n     */\\n    function MenuHighlight(options) {\\n        var _this = _super.call(this, options) || this;\\n        /**\\n         * List of all discovered anchors.\\n         */\\n        _this.anchors = [];\\n        /**\\n         * Index of the currently highlighted anchor.\\n         */\\n        _this.index = -1;\\n        _services_Viewport__WEBPACK_IMPORTED_MODULE_1__.Viewport.instance.addEventListener(\\\"resize\\\", function () { return _this.onResize(); });\\n        _services_Viewport__WEBPACK_IMPORTED_MODULE_1__.Viewport.instance.addEventListener(\\\"scroll\\\", function (e) { return _this.onScroll(e); });\\n        _this.createAnchors();\\n        return _this;\\n    }\\n    /**\\n     * Find all anchors on the current page.\\n     */\\n    MenuHighlight.prototype.createAnchors = function () {\\n        var _this = this;\\n        var base = window.location.href;\\n        if (base.indexOf(\\\"#\\\") != -1) {\\n            base = base.substr(0, base.indexOf(\\\"#\\\"));\\n        }\\n        this.el.querySelectorAll(\\\"a\\\").forEach(function (el) {\\n            var href = el.href;\\n            if (href.indexOf(\\\"#\\\") == -1)\\n                return;\\n            if (href.substr(0, base.length) != base)\\n                return;\\n            var hash = href.substr(href.indexOf(\\\"#\\\") + 1);\\n            var anchor = document.querySelector(\\\"a.tsd-anchor[name=\\\" + hash + \\\"]\\\");\\n            var link = el.parentNode;\\n            if (!anchor || !link)\\n                return;\\n            _this.anchors.push({\\n                link: link,\\n                anchor: anchor,\\n                position: 0,\\n            });\\n        });\\n        this.onResize();\\n    };\\n    /**\\n     * Triggered after the viewport was resized.\\n     */\\n    MenuHighlight.prototype.onResize = function () {\\n        var anchor;\\n        for (var index = 0, count = this.anchors.length; index < count; index++) {\\n            anchor = this.anchors[index];\\n            var rect = anchor.anchor.getBoundingClientRect();\\n            anchor.position = rect.top + document.body.scrollTop;\\n        }\\n        this.anchors.sort(function (a, b) {\\n            return a.position - b.position;\\n        });\\n        var event = new CustomEvent(\\\"scroll\\\", {\\n            detail: {\\n                scrollTop: _services_Viewport__WEBPACK_IMPORTED_MODULE_1__.Viewport.instance.scrollTop,\\n            },\\n        });\\n        this.onScroll(event);\\n    };\\n    /**\\n     * Triggered after the viewport was scrolled.\\n     *\\n     * @param event  The custom event with the current vertical scroll position.\\n     */\\n    MenuHighlight.prototype.onScroll = function (event) {\\n        var scrollTop = event.detail.scrollTop + 5;\\n        var anchors = this.anchors;\\n        var count = anchors.length - 1;\\n        var index = this.index;\\n        while (index > -1 && anchors[index].position > scrollTop) {\\n            index -= 1;\\n        }\\n        while (index < count && anchors[index + 1].position < scrollTop) {\\n            index += 1;\\n        }\\n        if (this.index != index) {\\n            if (this.index > -1)\\n                this.anchors[this.index].link.classList.remove(\\\"focus\\\");\\n            this.index = index;\\n            if (this.index > -1)\\n                this.anchors[this.index].link.classList.add(\\\"focus\\\");\\n        }\\n    };\\n    return MenuHighlight;\\n}(_Component__WEBPACK_IMPORTED_MODULE_0__.Component));\\n\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/components/MenuHighlight.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/components/Search.ts\":\n/*!************************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/components/Search.ts ***!\n  \\************************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"initSearch\\\": () => /* binding */ initSearch\\n/* harmony export */ });\\n/* harmony import */ var _utils_debounce__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/debounce */ \\\"./default/assets/js/src/typedoc/utils/debounce.ts\\\");\\n/* harmony import */ var lunr__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lunr */ \\\"../node_modules/lunr/lunr.js\\\");\\n/* harmony import */ var lunr__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(lunr__WEBPACK_IMPORTED_MODULE_1__);\\n\\n\\nfunction initSearch() {\\n    var searchEl = document.getElementById(\\\"tsd-search\\\");\\n    if (!searchEl)\\n        return;\\n    var searchScript = document.getElementById(\\\"search-script\\\");\\n    searchEl.classList.add(\\\"loading\\\");\\n    if (searchScript) {\\n        searchScript.addEventListener(\\\"error\\\", function () {\\n            searchEl.classList.remove(\\\"loading\\\");\\n            searchEl.classList.add(\\\"failure\\\");\\n        });\\n        searchScript.addEventListener(\\\"load\\\", function () {\\n            searchEl.classList.remove(\\\"loading\\\");\\n            searchEl.classList.add(\\\"ready\\\");\\n        });\\n        if (window.searchData) {\\n            searchEl.classList.remove(\\\"loading\\\");\\n        }\\n    }\\n    var field = document.querySelector(\\\"#tsd-search-field\\\");\\n    var results = document.querySelector(\\\".results\\\");\\n    if (!field || !results) {\\n        throw new Error(\\\"The input field or the result list wrapper was not found\\\");\\n    }\\n    var resultClicked = false;\\n    results.addEventListener(\\\"mousedown\\\", function () { return (resultClicked = true); });\\n    results.addEventListener(\\\"mouseup\\\", function () {\\n        resultClicked = false;\\n        searchEl.classList.remove(\\\"has-focus\\\");\\n    });\\n    field.addEventListener(\\\"focus\\\", function () { return searchEl.classList.add(\\\"has-focus\\\"); });\\n    field.addEventListener(\\\"blur\\\", function () {\\n        if (!resultClicked) {\\n            resultClicked = false;\\n            searchEl.classList.remove(\\\"has-focus\\\");\\n        }\\n    });\\n    var state = {\\n        base: searchEl.dataset.base + \\\"/\\\",\\n    };\\n    bindEvents(searchEl, results, field, state);\\n}\\nfunction bindEvents(searchEl, results, field, state) {\\n    field.addEventListener(\\\"input\\\", (0,_utils_debounce__WEBPACK_IMPORTED_MODULE_0__.debounce)(function () {\\n        updateResults(searchEl, results, field, state);\\n    }, 200));\\n    var preventPress = false;\\n    field.addEventListener(\\\"keydown\\\", function (e) {\\n        preventPress = true;\\n        if (e.key == \\\"Enter\\\") {\\n            gotoCurrentResult(results, field);\\n        }\\n        else if (e.key == \\\"Escape\\\") {\\n            field.blur();\\n        }\\n        else if (e.key == \\\"ArrowUp\\\") {\\n            setCurrentResult(results, -1);\\n        }\\n        else if (e.key === \\\"ArrowDown\\\") {\\n            setCurrentResult(results, 1);\\n        }\\n        else {\\n            preventPress = false;\\n        }\\n    });\\n    field.addEventListener(\\\"keypress\\\", function (e) {\\n        if (preventPress)\\n            e.preventDefault();\\n    });\\n    /**\\n     * Start searching by pressing slash.\\n     */\\n    document.body.addEventListener(\\\"keydown\\\", function (e) {\\n        if (e.altKey || e.ctrlKey || e.metaKey)\\n            return;\\n        if (!field.matches(\\\":focus\\\") && e.key === \\\"/\\\") {\\n            field.focus();\\n            e.preventDefault();\\n        }\\n    });\\n}\\nfunction checkIndex(state, searchEl) {\\n    if (state.index)\\n        return;\\n    if (window.searchData) {\\n        searchEl.classList.remove(\\\"loading\\\");\\n        searchEl.classList.add(\\\"ready\\\");\\n        state.data = window.searchData;\\n        state.index = lunr__WEBPACK_IMPORTED_MODULE_1__.Index.load(window.searchData.index);\\n    }\\n}\\nfunction updateResults(searchEl, results, query, state) {\\n    checkIndex(state, searchEl);\\n    // Don't clear results if loading state is not ready,\\n    // because loading or error message can be removed.\\n    if (!state.index || !state.data)\\n        return;\\n    results.textContent = \\\"\\\";\\n    var searchText = query.value.trim();\\n    // Perform a wildcard search\\n    var res = state.index.search(\\\"*\\\" + searchText + \\\"*\\\");\\n    for (var i = 0, c = Math.min(10, res.length); i < c; i++) {\\n        var row = state.data.rows[Number(res[i].ref)];\\n        // Bold the matched part of the query in the search results\\n        var name_1 = boldMatches(row.name, searchText);\\n        if (row.parent) {\\n            name_1 = \\\"<span class=\\\\\\\"parent\\\\\\\">\\\" + boldMatches(row.parent, searchText) + \\\".</span>\\\" + name_1;\\n        }\\n        var item = document.createElement(\\\"li\\\");\\n        item.classList.value = row.classes;\\n        var anchor = document.createElement(\\\"a\\\");\\n        anchor.href = state.base + row.url;\\n        anchor.classList.add(\\\"tsd-kind-icon\\\");\\n        anchor.innerHTML = name_1;\\n        item.append(anchor);\\n        results.appendChild(item);\\n    }\\n}\\n/**\\n * Move the highlight within the result set.\\n */\\nfunction setCurrentResult(results, dir) {\\n    var current = results.querySelector(\\\".current\\\");\\n    if (!current) {\\n        current = results.querySelector(dir == 1 ? \\\"li:first-child\\\" : \\\"li:last-child\\\");\\n        if (current) {\\n            current.classList.add(\\\"current\\\");\\n        }\\n    }\\n    else {\\n        var rel = dir == 1\\n            ? current.nextElementSibling\\n            : current.previousElementSibling;\\n        if (rel) {\\n            current.classList.remove(\\\"current\\\");\\n            rel.classList.add(\\\"current\\\");\\n        }\\n    }\\n}\\n/**\\n * Navigate to the highlighted result.\\n */\\nfunction gotoCurrentResult(results, field) {\\n    var current = results.querySelector(\\\".current\\\");\\n    if (!current) {\\n        current = results.querySelector(\\\"li:first-child\\\");\\n    }\\n    if (current) {\\n        var link = current.querySelector(\\\"a\\\");\\n        if (link) {\\n            window.location.href = link.href;\\n        }\\n        field.blur();\\n    }\\n}\\nfunction boldMatches(text, search) {\\n    if (search === \\\"\\\") {\\n        return text;\\n    }\\n    var lowerText = text.toLocaleLowerCase();\\n    var lowerSearch = search.toLocaleLowerCase();\\n    var parts = [];\\n    var lastIndex = 0;\\n    var index = lowerText.indexOf(lowerSearch);\\n    while (index != -1) {\\n        parts.push(escapeHtml(text.substring(lastIndex, index)), \\\"<b>\\\" + escapeHtml(text.substring(index, index + lowerSearch.length)) + \\\"</b>\\\");\\n        lastIndex = index + lowerSearch.length;\\n        index = lowerText.indexOf(lowerSearch, lastIndex);\\n    }\\n    parts.push(escapeHtml(text.substring(lastIndex)));\\n    return parts.join(\\\"\\\");\\n}\\nvar SPECIAL_HTML = {\\n    \\\"&\\\": \\\"&amp;\\\",\\n    \\\"<\\\": \\\"&lt;\\\",\\n    \\\">\\\": \\\"&gt;\\\",\\n    \\\"'\\\": \\\"&#039;\\\",\\n    '\\\"': \\\"&quot;\\\",\\n};\\nfunction escapeHtml(text) {\\n    return text.replace(/[&<>\\\"'\\\"]/g, function (match) { return SPECIAL_HTML[match]; });\\n}\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/components/Search.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/components/Signature.ts\":\n/*!***************************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/components/Signature.ts ***!\n  \\***************************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"Signature\\\": () => /* binding */ Signature\\n/* harmony export */ });\\n/* harmony import */ var _Component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Component */ \\\"./default/assets/js/src/typedoc/Component.ts\\\");\\n/* harmony import */ var _services_Viewport__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/Viewport */ \\\"./default/assets/js/src/typedoc/services/Viewport.ts\\\");\\nvar __extends = (undefined && undefined.__extends) || (function () {\\n    var extendStatics = function (d, b) {\\n        extendStatics = Object.setPrototypeOf ||\\n            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\\n            function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\\n        return extendStatics(d, b);\\n    };\\n    return function (d, b) {\\n        extendStatics(d, b);\\n        function __() { this.constructor = d; }\\n        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\\n    };\\n})();\\n\\n\\n/**\\n * Holds a signature and its description.\\n */\\nvar SignatureGroup = /** @class */ (function () {\\n    /**\\n     * Create a new SignatureGroup instance.\\n     *\\n     * @param signature    The target signature.\\n     * @param description  The description for the signature.\\n     */\\n    function SignatureGroup(signature, description) {\\n        this.signature = signature;\\n        this.description = description;\\n    }\\n    /**\\n     * Add the given class to all elements of the group.\\n     *\\n     * @param className  The class name to add.\\n     */\\n    SignatureGroup.prototype.addClass = function (className) {\\n        this.signature.classList.add(className);\\n        this.description.classList.add(className);\\n        return this;\\n    };\\n    /**\\n     * Remove the given class from all elements of the group.\\n     *\\n     * @param className  The class name to remove.\\n     */\\n    SignatureGroup.prototype.removeClass = function (className) {\\n        this.signature.classList.remove(className);\\n        this.description.classList.remove(className);\\n        return this;\\n    };\\n    return SignatureGroup;\\n}());\\n/**\\n * Controls the tab like behaviour of methods and functions with multiple signatures.\\n */\\nvar Signature = /** @class */ (function (_super) {\\n    __extends(Signature, _super);\\n    /**\\n     * Create a new Signature instance.\\n     *\\n     * @param options  Backbone view constructor options.\\n     */\\n    function Signature(options) {\\n        var _this = _super.call(this, options) || this;\\n        /**\\n         * List of found signature groups.\\n         */\\n        _this.groups = [];\\n        /**\\n         * The index of the currently displayed signature.\\n         */\\n        _this.index = -1;\\n        _this.createGroups();\\n        if (_this.container) {\\n            _this.el.classList.add(\\\"active\\\");\\n            Array.from(_this.el.children).forEach(function (signature) {\\n                signature.addEventListener(\\\"touchstart\\\", function (event) {\\n                    return _this.onClick(event);\\n                });\\n                signature.addEventListener(\\\"click\\\", function (event) {\\n                    return _this.onClick(event);\\n                });\\n            });\\n            _this.container.classList.add(\\\"active\\\");\\n            _this.setIndex(0);\\n        }\\n        return _this;\\n    }\\n    /**\\n     * Set the index of the active signature.\\n     *\\n     * @param index  The index of the signature to activate.\\n     */\\n    Signature.prototype.setIndex = function (index) {\\n        if (index < 0)\\n            index = 0;\\n        if (index > this.groups.length - 1)\\n            index = this.groups.length - 1;\\n        if (this.index == index)\\n            return;\\n        var to = this.groups[index];\\n        if (this.index > -1) {\\n            var from_1 = this.groups[this.index];\\n            from_1.removeClass(\\\"current\\\").addClass(\\\"fade-out\\\");\\n            to.addClass(\\\"current\\\");\\n            to.addClass(\\\"fade-in\\\");\\n            _services_Viewport__WEBPACK_IMPORTED_MODULE_1__.Viewport.instance.triggerResize();\\n            setTimeout(function () {\\n                from_1.removeClass(\\\"fade-out\\\");\\n                to.removeClass(\\\"fade-in\\\");\\n            }, 300);\\n        }\\n        else {\\n            to.addClass(\\\"current\\\");\\n            _services_Viewport__WEBPACK_IMPORTED_MODULE_1__.Viewport.instance.triggerResize();\\n        }\\n        this.index = index;\\n    };\\n    /**\\n     * Find all signature/description groups.\\n     */\\n    Signature.prototype.createGroups = function () {\\n        var signatures = this.el.children;\\n        if (signatures.length < 2)\\n            return;\\n        this.container = this.el.nextElementSibling;\\n        var descriptions = this.container.children;\\n        this.groups = [];\\n        for (var index = 0; index < signatures.length; index++) {\\n            this.groups.push(new SignatureGroup(signatures[index], descriptions[index]));\\n        }\\n    };\\n    /**\\n     * Triggered when the user clicks onto a signature header.\\n     *\\n     * @param e  The related event object.\\n     */\\n    Signature.prototype.onClick = function (e) {\\n        var _this = this;\\n        this.groups.forEach(function (group, index) {\\n            if (group.signature === e.currentTarget) {\\n                _this.setIndex(index);\\n            }\\n        });\\n    };\\n    return Signature;\\n}(_Component__WEBPACK_IMPORTED_MODULE_0__.Component));\\n\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/components/Signature.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/components/Toggle.ts\":\n/*!************************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/components/Toggle.ts ***!\n  \\************************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"Toggle\\\": () => /* binding */ Toggle\\n/* harmony export */ });\\n/* harmony import */ var _Component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Component */ \\\"./default/assets/js/src/typedoc/Component.ts\\\");\\n/* harmony import */ var _utils_pointer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/pointer */ \\\"./default/assets/js/src/typedoc/utils/pointer.ts\\\");\\nvar __extends = (undefined && undefined.__extends) || (function () {\\n    var extendStatics = function (d, b) {\\n        extendStatics = Object.setPrototypeOf ||\\n            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\\n            function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\\n        return extendStatics(d, b);\\n    };\\n    return function (d, b) {\\n        extendStatics(d, b);\\n        function __() { this.constructor = d; }\\n        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\\n    };\\n})();\\n\\n\\nvar Toggle = /** @class */ (function (_super) {\\n    __extends(Toggle, _super);\\n    function Toggle(options) {\\n        var _this = _super.call(this, options) || this;\\n        _this.className = _this.el.dataset.toggle || \\\"\\\";\\n        _this.el.addEventListener(_utils_pointer__WEBPACK_IMPORTED_MODULE_1__.pointerUp, function (e) { return _this.onPointerUp(e); });\\n        _this.el.addEventListener(\\\"click\\\", function (e) { return e.preventDefault(); });\\n        document.addEventListener(_utils_pointer__WEBPACK_IMPORTED_MODULE_1__.pointerDown, function (e) {\\n            return _this.onDocumentPointerDown(e);\\n        });\\n        document.addEventListener(_utils_pointer__WEBPACK_IMPORTED_MODULE_1__.pointerUp, function (e) {\\n            return _this.onDocumentPointerUp(e);\\n        });\\n        return _this;\\n    }\\n    Toggle.prototype.setActive = function (value) {\\n        if (this.active == value)\\n            return;\\n        this.active = value;\\n        document.documentElement.classList.toggle(\\\"has-\\\" + this.className, value);\\n        this.el.classList.toggle(\\\"active\\\", value);\\n        var transition = (this.active ? \\\"to-has-\\\" : \\\"from-has-\\\") + this.className;\\n        document.documentElement.classList.add(transition);\\n        setTimeout(function () { return document.documentElement.classList.remove(transition); }, 500);\\n    };\\n    Toggle.prototype.onPointerUp = function (event) {\\n        if (_utils_pointer__WEBPACK_IMPORTED_MODULE_1__.hasPointerMoved)\\n            return;\\n        this.setActive(true);\\n        event.preventDefault();\\n    };\\n    Toggle.prototype.onDocumentPointerDown = function (e) {\\n        if (this.active) {\\n            if (e.target.closest(\\\".col-menu, .tsd-filter-group\\\")) {\\n                return;\\n            }\\n            this.setActive(false);\\n        }\\n    };\\n    Toggle.prototype.onDocumentPointerUp = function (e) {\\n        var _this = this;\\n        if (_utils_pointer__WEBPACK_IMPORTED_MODULE_1__.hasPointerMoved)\\n            return;\\n        if (this.active) {\\n            if (e.target.closest(\\\".col-menu\\\")) {\\n                var link = e.target.closest(\\\"a\\\");\\n                if (link) {\\n                    var href = window.location.href;\\n                    if (href.indexOf(\\\"#\\\") != -1) {\\n                        href = href.substr(0, href.indexOf(\\\"#\\\"));\\n                    }\\n                    if (link.href.substr(0, href.length) == href) {\\n                        setTimeout(function () { return _this.setActive(false); }, 250);\\n                    }\\n                }\\n            }\\n        }\\n    };\\n    return Toggle;\\n}(_Component__WEBPACK_IMPORTED_MODULE_0__.Component));\\n\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/components/Toggle.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/services/Viewport.ts\":\n/*!************************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/services/Viewport.ts ***!\n  \\************************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"Viewport\\\": () => /* binding */ Viewport\\n/* harmony export */ });\\n/* harmony import */ var _EventTarget__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../EventTarget */ \\\"./default/assets/js/src/typedoc/EventTarget.ts\\\");\\n/* harmony import */ var _utils_trottle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/trottle */ \\\"./default/assets/js/src/typedoc/utils/trottle.ts\\\");\\nvar __extends = (undefined && undefined.__extends) || (function () {\\n    var extendStatics = function (d, b) {\\n        extendStatics = Object.setPrototypeOf ||\\n            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\\n            function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\\n        return extendStatics(d, b);\\n    };\\n    return function (d, b) {\\n        extendStatics(d, b);\\n        function __() { this.constructor = d; }\\n        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\\n    };\\n})();\\n\\n\\n/**\\n * A global service that monitors the window size and scroll position.\\n */\\nvar Viewport = /** @class */ (function (_super) {\\n    __extends(Viewport, _super);\\n    /**\\n     * Create new Viewport instance.\\n     */\\n    function Viewport() {\\n        var _this = _super.call(this) || this;\\n        /**\\n         * The current scroll position.\\n         */\\n        _this.scrollTop = 0;\\n        /**\\n         * The previous scrollTop.\\n         */\\n        _this.lastY = 0;\\n        /**\\n         * The width of the window.\\n         */\\n        _this.width = 0;\\n        /**\\n         * The height of the window.\\n         */\\n        _this.height = 0;\\n        /**\\n         * Boolean indicating whether the toolbar is shown.\\n         */\\n        _this.showToolbar = true;\\n        _this.toolbar = (document.querySelector(\\\".tsd-page-toolbar\\\"));\\n        _this.secondaryNav = (document.querySelector(\\\".tsd-navigation.secondary\\\"));\\n        window.addEventListener(\\\"scroll\\\", (0,_utils_trottle__WEBPACK_IMPORTED_MODULE_1__.throttle)(function () { return _this.onScroll(); }, 10));\\n        window.addEventListener(\\\"resize\\\", (0,_utils_trottle__WEBPACK_IMPORTED_MODULE_1__.throttle)(function () { return _this.onResize(); }, 10));\\n        _this.onResize();\\n        _this.onScroll();\\n        return _this;\\n    }\\n    /**\\n     * Trigger a resize event.\\n     */\\n    Viewport.prototype.triggerResize = function () {\\n        var event = new CustomEvent(\\\"resize\\\", {\\n            detail: {\\n                width: this.width,\\n                height: this.height,\\n            },\\n        });\\n        this.dispatchEvent(event);\\n    };\\n    /**\\n     * Triggered when the size of the window has changed.\\n     */\\n    Viewport.prototype.onResize = function () {\\n        this.width = window.innerWidth || 0;\\n        this.height = window.innerHeight || 0;\\n        var event = new CustomEvent(\\\"resize\\\", {\\n            detail: {\\n                width: this.width,\\n                height: this.height,\\n            },\\n        });\\n        this.dispatchEvent(event);\\n    };\\n    /**\\n     * Triggered when the user scrolled the viewport.\\n     */\\n    Viewport.prototype.onScroll = function () {\\n        this.scrollTop = window.scrollY || 0;\\n        var event = new CustomEvent(\\\"scroll\\\", {\\n            detail: {\\n                scrollTop: this.scrollTop,\\n            },\\n        });\\n        this.dispatchEvent(event);\\n        this.hideShowToolbar();\\n    };\\n    /**\\n     * Handle hiding/showing of the toolbar.\\n     */\\n    Viewport.prototype.hideShowToolbar = function () {\\n        var isShown = this.showToolbar;\\n        this.showToolbar = this.lastY >= this.scrollTop || this.scrollTop === 0;\\n        if (isShown !== this.showToolbar) {\\n            this.toolbar.classList.toggle(\\\"tsd-page-toolbar--hide\\\");\\n            this.secondaryNav.classList.toggle(\\\"tsd-navigation--toolbar-hide\\\");\\n        }\\n        this.lastY = this.scrollTop;\\n    };\\n    Viewport.instance = new Viewport();\\n    return Viewport;\\n}(_EventTarget__WEBPACK_IMPORTED_MODULE_0__.EventTarget));\\n\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/services/Viewport.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/utils/debounce.ts\":\n/*!*********************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/utils/debounce.ts ***!\n  \\*********************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"debounce\\\": () => /* binding */ debounce\\n/* harmony export */ });\\nvar debounce = function (fn, wait) {\\n    if (wait === void 0) { wait = 100; }\\n    var timeout;\\n    return function () {\\n        var args = [];\\n        for (var _i = 0; _i < arguments.length; _i++) {\\n            args[_i] = arguments[_i];\\n        }\\n        clearTimeout(timeout);\\n        timeout = setTimeout(function () { return fn(args); }, wait);\\n    };\\n};\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/utils/debounce.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/utils/pointer.ts\":\n/*!********************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/utils/pointer.ts ***!\n  \\********************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"pointerDown\\\": () => /* binding */ pointerDown,\\n/* harmony export */   \\\"pointerMove\\\": () => /* binding */ pointerMove,\\n/* harmony export */   \\\"pointerUp\\\": () => /* binding */ pointerUp,\\n/* harmony export */   \\\"pointerDownPosition\\\": () => /* binding */ pointerDownPosition,\\n/* harmony export */   \\\"preventNextClick\\\": () => /* binding */ preventNextClick,\\n/* harmony export */   \\\"isPointerDown\\\": () => /* binding */ isPointerDown,\\n/* harmony export */   \\\"isPointerTouch\\\": () => /* binding */ isPointerTouch,\\n/* harmony export */   \\\"hasPointerMoved\\\": () => /* binding */ hasPointerMoved,\\n/* harmony export */   \\\"isMobile\\\": () => /* binding */ isMobile\\n/* harmony export */ });\\n/**\\n * Event name of the pointer down event.\\n */\\nvar pointerDown = \\\"mousedown\\\";\\n/**\\n * Event name of the pointer move event.\\n */\\nvar pointerMove = \\\"mousemove\\\";\\n/**\\n * Event name of the pointer up event.\\n */\\nvar pointerUp = \\\"mouseup\\\";\\n/**\\n * Position the pointer was pressed at.\\n */\\nvar pointerDownPosition = { x: 0, y: 0 };\\n/**\\n * Should the next click on the document be supressed?\\n */\\nvar preventNextClick = false;\\n/**\\n * Is the pointer down?\\n */\\nvar isPointerDown = false;\\n/**\\n * Is the pointer a touch point?\\n */\\nvar isPointerTouch = false;\\n/**\\n * Did the pointer move since the last down event?\\n */\\nvar hasPointerMoved = false;\\n/**\\n * Is the user agent a mobile agent?\\n */\\nvar isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);\\ndocument.documentElement.classList.add(isMobile ? \\\"is-mobile\\\" : \\\"not-mobile\\\");\\nif (isMobile && \\\"ontouchstart\\\" in document.documentElement) {\\n    isPointerTouch = true;\\n    pointerDown = \\\"touchstart\\\";\\n    pointerMove = \\\"touchmove\\\";\\n    pointerUp = \\\"touchend\\\";\\n}\\ndocument.addEventListener(pointerDown, function (e) {\\n    isPointerDown = true;\\n    hasPointerMoved = false;\\n    var t = pointerDown == \\\"touchstart\\\"\\n        ? e.targetTouches[0]\\n        : e;\\n    pointerDownPosition.y = t.pageY || 0;\\n    pointerDownPosition.x = t.pageX || 0;\\n});\\ndocument.addEventListener(pointerMove, function (e) {\\n    if (!isPointerDown)\\n        return;\\n    if (!hasPointerMoved) {\\n        var t = pointerDown == \\\"touchstart\\\"\\n            ? e.targetTouches[0]\\n            : e;\\n        var x = pointerDownPosition.x - (t.pageX || 0);\\n        var y = pointerDownPosition.y - (t.pageY || 0);\\n        hasPointerMoved = Math.sqrt(x * x + y * y) > 10;\\n    }\\n});\\ndocument.addEventListener(pointerUp, function () {\\n    isPointerDown = false;\\n});\\ndocument.addEventListener(\\\"click\\\", function (e) {\\n    if (preventNextClick) {\\n        e.preventDefault();\\n        e.stopImmediatePropagation();\\n        preventNextClick = false;\\n    }\\n});\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/utils/pointer.ts?\");\n\n/***/ }),\n\n/***/ \"./default/assets/js/src/typedoc/utils/trottle.ts\":\n/*!********************************************************!*\\\n  !*** ./default/assets/js/src/typedoc/utils/trottle.ts ***!\n  \\********************************************************/\n/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\\n/* harmony export */   \\\"throttle\\\": () => /* binding */ throttle\\n/* harmony export */ });\\nvar throttle = function (fn, wait) {\\n    if (wait === void 0) { wait = 100; }\\n    var time = Date.now();\\n    return function () {\\n        var args = [];\\n        for (var _i = 0; _i < arguments.length; _i++) {\\n            args[_i] = arguments[_i];\\n        }\\n        if (time + wait - Date.now() < 0) {\\n            fn.apply(void 0, args);\\n            time = Date.now();\\n        }\\n    };\\n};\\n\\n\\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/utils/trottle.ts?\");\n\n/***/ })\n\n/******/ \t});\n/************************************************************************/\n/******/ \t// The module cache\n/******/ \tvar __webpack_module_cache__ = {};\n/******/ \t\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(__webpack_module_cache__[moduleId]) {\n/******/ \t\t\treturn __webpack_module_cache__[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = __webpack_module_cache__[moduleId] = {\n/******/ \t\t\t// no module.id needed\n/******/ \t\t\t// no module.loaded needed\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/ \t\n/******/ \t\t// Execute the module function\n/******/ \t\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n/******/ \t\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/ \t\n/************************************************************************/\n/******/ \t/* webpack/runtime/compat get default export */\n/******/ \t(() => {\n/******/ \t\t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t\t__webpack_require__.n = (module) => {\n/******/ \t\t\tvar getter = module && module.__esModule ?\n/******/ \t\t\t\t() => module['default'] :\n/******/ \t\t\t\t() => module;\n/******/ \t\t\t__webpack_require__.d(getter, { a: getter });\n/******/ \t\t\treturn getter;\n/******/ \t\t};\n/******/ \t})();\n/******/ \t\n/******/ \t/* webpack/runtime/define property getters */\n/******/ \t(() => {\n/******/ \t\t// define getter functions for harmony exports\n/******/ \t\t__webpack_require__.d = (exports, definition) => {\n/******/ \t\t\tfor(var key in definition) {\n/******/ \t\t\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n/******/ \t\t\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n/******/ \t\t\t\t}\n/******/ \t\t\t}\n/******/ \t\t};\n/******/ \t})();\n/******/ \t\n/******/ \t/* webpack/runtime/hasOwnProperty shorthand */\n/******/ \t(() => {\n/******/ \t\t__webpack_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop)\n/******/ \t})();\n/******/ \t\n/******/ \t/* webpack/runtime/make namespace object */\n/******/ \t(() => {\n/******/ \t\t// define __esModule on exports\n/******/ \t\t__webpack_require__.r = (exports) => {\n/******/ \t\t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n/******/ \t\t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n/******/ \t\t\t}\n/******/ \t\t\tObject.defineProperty(exports, '__esModule', { value: true });\n/******/ \t\t};\n/******/ \t})();\n/******/ \t\n/************************************************************************/\n/******/ \t// startup\n/******/ \t// Load entry module\n/******/ \t__webpack_require__(\"./default/assets/js/src/bootstrap.ts\");\n/******/ \t// This entry module used 'exports' so it can't be inlined\n/******/ })()\n;"
  },
  {
    "path": "docs/assets/js/search.js",
    "content": "window.searchData = {\"kinds\":{\"1\":\"Module\",\"4\":\"Enumeration\",\"16\":\"Enumeration member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":1,\"name\":\"download-playlist\",\"url\":\"modules/download_playlist.html\",\"classes\":\"tsd-kind-module\"},{\"id\":1,\"kind\":64,\"name\":\"downloadPlaylist\",\"url\":\"modules/download_playlist.html#downloadplaylist\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"download-playlist\"},{\"id\":2,\"kind\":1,\"name\":\"filter-media\",\"url\":\"modules/filter_media.html\",\"classes\":\"tsd-kind-module\"},{\"id\":3,\"kind\":256,\"name\":\"FilterPredicateObject\",\"url\":\"interfaces/filter_media.filterpredicateobject.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"filter-media\"},{\"id\":4,\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/filter_media.filterpredicateobject.html#protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"filter-media.FilterPredicateObject\"},{\"id\":5,\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/filter_media.filterpredicateobject.html#format\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"filter-media.FilterPredicateObject\"},{\"id\":6,\"kind\":1,\"name\":\"formats\",\"url\":\"modules/formats.html\",\"classes\":\"tsd-kind-module\"},{\"id\":7,\"kind\":4,\"name\":\"default\",\"url\":\"enums/formats.default.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"formats\"},{\"id\":8,\"kind\":16,\"name\":\"MP3\",\"url\":\"enums/formats.default.html#mp3\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"formats.default\"},{\"id\":9,\"kind\":16,\"name\":\"OPUS\",\"url\":\"enums/formats.default.html#opus\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"formats.default\"},{\"id\":10,\"kind\":1,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"id\":11,\"kind\":256,\"name\":\"SCDLOptions\",\"url\":\"interfaces/index.scdloptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":12,\"kind\":1024,\"name\":\"clientID\",\"url\":\"interfaces/index.scdloptions.html#clientid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"index.SCDLOptions\"},{\"id\":13,\"kind\":1024,\"name\":\"saveClientID\",\"url\":\"interfaces/index.scdloptions.html#saveclientid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"index.SCDLOptions\"},{\"id\":14,\"kind\":1024,\"name\":\"filePath\",\"url\":\"interfaces/index.scdloptions.html#filepath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"index.SCDLOptions\"},{\"id\":15,\"kind\":1024,\"name\":\"axiosInstance\",\"url\":\"interfaces/index.scdloptions.html#axiosinstance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"index.SCDLOptions\"},{\"id\":16,\"kind\":1024,\"name\":\"stripMobilePrefix\",\"url\":\"interfaces/index.scdloptions.html#stripmobileprefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"index.SCDLOptions\"},{\"id\":17,\"kind\":1024,\"name\":\"convertFirebaseLinks\",\"url\":\"interfaces/index.scdloptions.html#convertfirebaselinks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"index.SCDLOptions\"},{\"id\":18,\"kind\":128,\"name\":\"SCDL\",\"url\":\"classes/index.scdl.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":19,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/index.scdl.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":20,\"kind\":1024,\"name\":\"STREAMING_PROTOCOLS\",\"url\":\"classes/index.scdl.html#streaming_protocols\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":21,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/index.scdl.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":22,\"kind\":1024,\"name\":\"FORMATS\",\"url\":\"classes/index.scdl.html#formats\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":23,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/index.scdl.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":24,\"kind\":1024,\"name\":\"_clientID\",\"url\":\"classes/index.scdl.html#_clientid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"index.SCDL\"},{\"id\":25,\"kind\":1024,\"name\":\"_filePath\",\"url\":\"classes/index.scdl.html#_filepath\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"index.SCDL\"},{\"id\":26,\"kind\":1024,\"name\":\"axios\",\"url\":\"classes/index.scdl.html#axios\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":27,\"kind\":1024,\"name\":\"saveClientID\",\"url\":\"classes/index.scdl.html#saveclientid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":28,\"kind\":1024,\"name\":\"stripMobilePrefix\",\"url\":\"classes/index.scdl.html#stripmobileprefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":29,\"kind\":1024,\"name\":\"convertFirebaseLinks\",\"url\":\"classes/index.scdl.html#convertfirebaselinks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":30,\"kind\":2048,\"name\":\"filterMedia\",\"url\":\"classes/index.scdl.html#filtermedia\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":31,\"kind\":2048,\"name\":\"download\",\"url\":\"classes/index.scdl.html#download\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":32,\"kind\":2048,\"name\":\"downloadFormat\",\"url\":\"classes/index.scdl.html#downloadformat\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":33,\"kind\":2048,\"name\":\"getInfo\",\"url\":\"classes/index.scdl.html#getinfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":34,\"kind\":2048,\"name\":\"getTrackInfoByID\",\"url\":\"classes/index.scdl.html#gettrackinfobyid\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":35,\"kind\":2048,\"name\":\"getSetInfo\",\"url\":\"classes/index.scdl.html#getsetinfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":36,\"kind\":2048,\"name\":\"search\",\"url\":\"classes/index.scdl.html#search\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":37,\"kind\":2048,\"name\":\"related\",\"url\":\"classes/index.scdl.html#related\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":38,\"kind\":2048,\"name\":\"downloadPlaylist\",\"url\":\"classes/index.scdl.html#downloadplaylist\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":39,\"kind\":2048,\"name\":\"getLikes\",\"url\":\"classes/index.scdl.html#getlikes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":40,\"kind\":2048,\"name\":\"getUser\",\"url\":\"classes/index.scdl.html#getuser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":41,\"kind\":2048,\"name\":\"setAxiosInstance\",\"url\":\"classes/index.scdl.html#setaxiosinstance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":42,\"kind\":2048,\"name\":\"isValidUrl\",\"url\":\"classes/index.scdl.html#isvalidurl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":43,\"kind\":2048,\"name\":\"isPlaylistURL\",\"url\":\"classes/index.scdl.html#isplaylisturl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":44,\"kind\":2048,\"name\":\"isPersonalizedTrackURL\",\"url\":\"classes/index.scdl.html#ispersonalizedtrackurl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":45,\"kind\":2048,\"name\":\"isFirebaseURL\",\"url\":\"classes/index.scdl.html#isfirebaseurl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":46,\"kind\":2048,\"name\":\"getClientID\",\"url\":\"classes/index.scdl.html#getclientid\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":47,\"kind\":2048,\"name\":\"prepareURL\",\"url\":\"classes/index.scdl.html#prepareurl\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"index.SCDL\"},{\"id\":48,\"kind\":64,\"name\":\"create\",\"url\":\"modules/index.html#create\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":49,\"kind\":32,\"name\":\"default\",\"url\":\"modules/index.html#default\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":50,\"kind\":1,\"name\":\"info\",\"url\":\"modules/info.html\",\"classes\":\"tsd-kind-module\"},{\"id\":51,\"kind\":256,\"name\":\"User\",\"url\":\"interfaces/info.user.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"info\"},{\"id\":52,\"kind\":1024,\"name\":\"kind\",\"url\":\"interfaces/info.user.html#kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":53,\"kind\":1024,\"name\":\"avatar_url\",\"url\":\"interfaces/info.user.html#avatar_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":54,\"kind\":1024,\"name\":\"city\",\"url\":\"interfaces/info.user.html#city\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":55,\"kind\":1024,\"name\":\"comments_count\",\"url\":\"interfaces/info.user.html#comments_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":56,\"kind\":1024,\"name\":\"country_code\",\"url\":\"interfaces/info.user.html#country_code\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":57,\"kind\":1024,\"name\":\"created_at\",\"url\":\"interfaces/info.user.html#created_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":58,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/info.user.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":59,\"kind\":1024,\"name\":\"followers_count\",\"url\":\"interfaces/info.user.html#followers_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":60,\"kind\":1024,\"name\":\"followings_count\",\"url\":\"interfaces/info.user.html#followings_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":61,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/info.user.html#first_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":62,\"kind\":1024,\"name\":\"full_name\",\"url\":\"interfaces/info.user.html#full_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":63,\"kind\":1024,\"name\":\"groups_count\",\"url\":\"interfaces/info.user.html#groups_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":64,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/info.user.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":65,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/info.user.html#last_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":66,\"kind\":1024,\"name\":\"permalink_url\",\"url\":\"interfaces/info.user.html#permalink_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":67,\"kind\":1024,\"name\":\"uri\",\"url\":\"interfaces/info.user.html#uri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":68,\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/info.user.html#username\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.User\"},{\"id\":69,\"kind\":256,\"name\":\"TrackInfo\",\"url\":\"interfaces/info.trackinfo.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"info\"},{\"id\":70,\"kind\":1024,\"name\":\"kind\",\"url\":\"interfaces/info.trackinfo.html#kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":71,\"kind\":1024,\"name\":\"monetization_model\",\"url\":\"interfaces/info.trackinfo.html#monetization_model\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":72,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/info.trackinfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":73,\"kind\":1024,\"name\":\"policy\",\"url\":\"interfaces/info.trackinfo.html#policy\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":74,\"kind\":1024,\"name\":\"comment_count\",\"url\":\"interfaces/info.trackinfo.html#comment_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":75,\"kind\":1024,\"name\":\"full_duration\",\"url\":\"interfaces/info.trackinfo.html#full_duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":76,\"kind\":1024,\"name\":\"downloadable\",\"url\":\"interfaces/info.trackinfo.html#downloadable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":77,\"kind\":1024,\"name\":\"created_at\",\"url\":\"interfaces/info.trackinfo.html#created_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":78,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/info.trackinfo.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":79,\"kind\":1024,\"name\":\"media\",\"url\":\"interfaces/info.trackinfo.html#media\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":80,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/info.trackinfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":81,\"kind\":1024,\"name\":\"transcodings\",\"url\":\"interfaces/info.trackinfo.html#__type.transcodings\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"info.TrackInfo.__type\"},{\"id\":82,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/info.trackinfo.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":83,\"kind\":1024,\"name\":\"publisher_metadata\",\"url\":\"interfaces/info.trackinfo.html#publisher_metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":84,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/info.trackinfo.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":85,\"kind\":1024,\"name\":\"has_downloads_left\",\"url\":\"interfaces/info.trackinfo.html#has_downloads_left\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":86,\"kind\":1024,\"name\":\"artwork_url\",\"url\":\"interfaces/info.trackinfo.html#artwork_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":87,\"kind\":1024,\"name\":\"public\",\"url\":\"interfaces/info.trackinfo.html#public\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":88,\"kind\":1024,\"name\":\"streamable\",\"url\":\"interfaces/info.trackinfo.html#streamable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":89,\"kind\":1024,\"name\":\"tag_list\",\"url\":\"interfaces/info.trackinfo.html#tag_list\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":90,\"kind\":1024,\"name\":\"genre\",\"url\":\"interfaces/info.trackinfo.html#genre\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":91,\"kind\":1024,\"name\":\"reposts_count\",\"url\":\"interfaces/info.trackinfo.html#reposts_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":92,\"kind\":1024,\"name\":\"label_name\",\"url\":\"interfaces/info.trackinfo.html#label_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":93,\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/info.trackinfo.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":94,\"kind\":1024,\"name\":\"last_modified\",\"url\":\"interfaces/info.trackinfo.html#last_modified\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":95,\"kind\":1024,\"name\":\"commentable\",\"url\":\"interfaces/info.trackinfo.html#commentable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":96,\"kind\":1024,\"name\":\"uri\",\"url\":\"interfaces/info.trackinfo.html#uri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":97,\"kind\":1024,\"name\":\"download_count\",\"url\":\"interfaces/info.trackinfo.html#download_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":98,\"kind\":1024,\"name\":\"likes_count\",\"url\":\"interfaces/info.trackinfo.html#likes_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":99,\"kind\":1024,\"name\":\"display_date\",\"url\":\"interfaces/info.trackinfo.html#display_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":100,\"kind\":1024,\"name\":\"user_id\",\"url\":\"interfaces/info.trackinfo.html#user_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":101,\"kind\":1024,\"name\":\"waveform_url\",\"url\":\"interfaces/info.trackinfo.html#waveform_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":102,\"kind\":1024,\"name\":\"permalink\",\"url\":\"interfaces/info.trackinfo.html#permalink\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":103,\"kind\":1024,\"name\":\"permalink_url\",\"url\":\"interfaces/info.trackinfo.html#permalink_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":104,\"kind\":1024,\"name\":\"user\",\"url\":\"interfaces/info.trackinfo.html#user\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":105,\"kind\":1024,\"name\":\"playback_count\",\"url\":\"interfaces/info.trackinfo.html#playback_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.TrackInfo\"},{\"id\":106,\"kind\":256,\"name\":\"SetInfo\",\"url\":\"interfaces/info.setinfo.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"info\"},{\"id\":107,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/info.setinfo.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":108,\"kind\":1024,\"name\":\"permalink_url\",\"url\":\"interfaces/info.setinfo.html#permalink_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":109,\"kind\":1024,\"name\":\"reposts_count\",\"url\":\"interfaces/info.setinfo.html#reposts_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":110,\"kind\":1024,\"name\":\"genre\",\"url\":\"interfaces/info.setinfo.html#genre\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":111,\"kind\":1024,\"name\":\"permalink\",\"url\":\"interfaces/info.setinfo.html#permalink\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":112,\"kind\":1024,\"name\":\"purchase_url\",\"url\":\"interfaces/info.setinfo.html#purchase_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":113,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/info.setinfo.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":114,\"kind\":1024,\"name\":\"uri\",\"url\":\"interfaces/info.setinfo.html#uri\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":115,\"kind\":1024,\"name\":\"label_name\",\"url\":\"interfaces/info.setinfo.html#label_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":116,\"kind\":1024,\"name\":\"tag_list\",\"url\":\"interfaces/info.setinfo.html#tag_list\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":117,\"kind\":1024,\"name\":\"set_type\",\"url\":\"interfaces/info.setinfo.html#set_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":118,\"kind\":1024,\"name\":\"public\",\"url\":\"interfaces/info.setinfo.html#public\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":119,\"kind\":1024,\"name\":\"track_count\",\"url\":\"interfaces/info.setinfo.html#track_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":120,\"kind\":1024,\"name\":\"user_id\",\"url\":\"interfaces/info.setinfo.html#user_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":121,\"kind\":1024,\"name\":\"last_modified\",\"url\":\"interfaces/info.setinfo.html#last_modified\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":122,\"kind\":1024,\"name\":\"license\",\"url\":\"interfaces/info.setinfo.html#license\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":123,\"kind\":1024,\"name\":\"tracks\",\"url\":\"interfaces/info.setinfo.html#tracks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":124,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/info.setinfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":125,\"kind\":1024,\"name\":\"release_date\",\"url\":\"interfaces/info.setinfo.html#release_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":126,\"kind\":1024,\"name\":\"display_date\",\"url\":\"interfaces/info.setinfo.html#display_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":127,\"kind\":1024,\"name\":\"sharing\",\"url\":\"interfaces/info.setinfo.html#sharing\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":128,\"kind\":1024,\"name\":\"secret_token\",\"url\":\"interfaces/info.setinfo.html#secret_token\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":129,\"kind\":1024,\"name\":\"created_at\",\"url\":\"interfaces/info.setinfo.html#created_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":130,\"kind\":1024,\"name\":\"likes_count\",\"url\":\"interfaces/info.setinfo.html#likes_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":131,\"kind\":1024,\"name\":\"kind\",\"url\":\"interfaces/info.setinfo.html#kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":132,\"kind\":1024,\"name\":\"purchase_title\",\"url\":\"interfaces/info.setinfo.html#purchase_title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":133,\"kind\":1024,\"name\":\"managed_by_feeds\",\"url\":\"interfaces/info.setinfo.html#managed_by_feeds\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":134,\"kind\":1024,\"name\":\"artwork_url\",\"url\":\"interfaces/info.setinfo.html#artwork_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":135,\"kind\":1024,\"name\":\"is_album\",\"url\":\"interfaces/info.setinfo.html#is_album\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":136,\"kind\":1024,\"name\":\"user\",\"url\":\"interfaces/info.setinfo.html#user\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":137,\"kind\":1024,\"name\":\"published_at\",\"url\":\"interfaces/info.setinfo.html#published_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":138,\"kind\":1024,\"name\":\"embeddable_by\",\"url\":\"interfaces/info.setinfo.html#embeddable_by\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.SetInfo\"},{\"id\":139,\"kind\":256,\"name\":\"Transcoding\",\"url\":\"interfaces/info.transcoding.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"info\"},{\"id\":140,\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/info.transcoding.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.Transcoding\"},{\"id\":141,\"kind\":1024,\"name\":\"preset\",\"url\":\"interfaces/info.transcoding.html#preset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.Transcoding\"},{\"id\":142,\"kind\":1024,\"name\":\"snipped\",\"url\":\"interfaces/info.transcoding.html#snipped\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.Transcoding\"},{\"id\":143,\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/info.transcoding.html#format\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"info.Transcoding\"},{\"id\":144,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/info.transcoding.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"info.Transcoding\"},{\"id\":145,\"kind\":1024,\"name\":\"protocol\",\"url\":\"interfaces/info.transcoding.html#__type.protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"info.Transcoding.__type\"},{\"id\":146,\"kind\":1024,\"name\":\"mime_type\",\"url\":\"interfaces/info.transcoding.html#__type.mime_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"info.Transcoding.__type\"},{\"id\":147,\"kind\":64,\"name\":\"getTrackInfoByID\",\"url\":\"modules/info.html#gettrackinfobyid\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"info\"},{\"id\":148,\"kind\":1,\"name\":\"likes\",\"url\":\"modules/likes.html\",\"classes\":\"tsd-kind-module\"},{\"id\":149,\"kind\":256,\"name\":\"Like\",\"url\":\"interfaces/likes.like.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"likes\"},{\"id\":150,\"kind\":1024,\"name\":\"created_at\",\"url\":\"interfaces/likes.like.html#created_at\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"likes.Like\"},{\"id\":151,\"kind\":1024,\"name\":\"kind\",\"url\":\"interfaces/likes.like.html#kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"likes.Like\"},{\"id\":152,\"kind\":1024,\"name\":\"track\",\"url\":\"interfaces/likes.like.html#track\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"likes.Like\"},{\"id\":153,\"kind\":256,\"name\":\"GetLikesOptions\",\"url\":\"interfaces/likes.getlikesoptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"likes\"},{\"id\":154,\"kind\":1024,\"name\":\"profileUrl\",\"url\":\"interfaces/likes.getlikesoptions.html#profileurl\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"likes.GetLikesOptions\"},{\"id\":155,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/likes.getlikesoptions.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"likes.GetLikesOptions\"},{\"id\":156,\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/likes.getlikesoptions.html#limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"likes.GetLikesOptions\"},{\"id\":157,\"kind\":1024,\"name\":\"offset\",\"url\":\"interfaces/likes.getlikesoptions.html#offset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"likes.GetLikesOptions\"},{\"id\":158,\"kind\":1024,\"name\":\"nextHref\",\"url\":\"interfaces/likes.getlikesoptions.html#nexthref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"likes.GetLikesOptions\"},{\"id\":159,\"kind\":1,\"name\":\"protocols\",\"url\":\"modules/protocols.html\",\"classes\":\"tsd-kind-module\"},{\"id\":160,\"kind\":4,\"name\":\"default\",\"url\":\"enums/protocols.default.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"protocols\"},{\"id\":161,\"kind\":16,\"name\":\"HLS\",\"url\":\"enums/protocols.default.html#hls\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"protocols.default\"},{\"id\":162,\"kind\":16,\"name\":\"PROGRESSIVE\",\"url\":\"enums/protocols.default.html#progressive\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"protocols.default\"},{\"id\":163,\"kind\":1,\"name\":\"search\",\"url\":\"modules/search.html\",\"classes\":\"tsd-kind-module\"},{\"id\":164,\"kind\":256,\"name\":\"RelatedResponse\",\"url\":\"interfaces/search.relatedresponse.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter\",\"parent\":\"search\"},{\"id\":165,\"kind\":1024,\"name\":\"variant\",\"url\":\"interfaces/search.relatedresponse.html#variant\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.RelatedResponse\"},{\"id\":166,\"kind\":1024,\"name\":\"collection\",\"url\":\"interfaces/search.relatedresponse.html#collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.RelatedResponse\"},{\"id\":167,\"kind\":1024,\"name\":\"total_results\",\"url\":\"interfaces/search.relatedresponse.html#total_results\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.RelatedResponse\"},{\"id\":168,\"kind\":1024,\"name\":\"next_href\",\"url\":\"interfaces/search.relatedresponse.html#next_href\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.RelatedResponse\"},{\"id\":169,\"kind\":1024,\"name\":\"query_urn\",\"url\":\"interfaces/search.relatedresponse.html#query_urn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.RelatedResponse\"},{\"id\":170,\"kind\":256,\"name\":\"SearchOptions\",\"url\":\"interfaces/search.searchoptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"search\"},{\"id\":171,\"kind\":1024,\"name\":\"limit\",\"url\":\"interfaces/search.searchoptions.html#limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.SearchOptions\"},{\"id\":172,\"kind\":1024,\"name\":\"offset\",\"url\":\"interfaces/search.searchoptions.html#offset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.SearchOptions\"},{\"id\":173,\"kind\":1024,\"name\":\"resourceType\",\"url\":\"interfaces/search.searchoptions.html#resourcetype\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.SearchOptions\"},{\"id\":174,\"kind\":1024,\"name\":\"query\",\"url\":\"interfaces/search.searchoptions.html#query\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.SearchOptions\"},{\"id\":175,\"kind\":1024,\"name\":\"nextHref\",\"url\":\"interfaces/search.searchoptions.html#nexthref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"search.SearchOptions\"},{\"id\":176,\"kind\":4194304,\"name\":\"SearchResponseAll\",\"url\":\"modules/search.html#searchresponseall\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"search\"},{\"id\":177,\"kind\":4194304,\"name\":\"SoundcloudResource\",\"url\":\"modules/search.html#soundcloudresource\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"search\"},{\"id\":178,\"kind\":1,\"name\":\"url\",\"url\":\"modules/url.html\",\"classes\":\"tsd-kind-module\"},{\"id\":179,\"kind\":64,\"name\":\"isPlaylistURL\",\"url\":\"modules/url.html#isplaylisturl\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"url\"},{\"id\":180,\"kind\":64,\"name\":\"isPersonalizedTrackURL\",\"url\":\"modules/url.html#ispersonalizedtrackurl\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"url\"},{\"id\":181,\"kind\":64,\"name\":\"stripMobilePrefix\",\"url\":\"modules/url.html#stripmobileprefix\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"url\"},{\"id\":182,\"kind\":64,\"name\":\"isFirebaseURL\",\"url\":\"modules/url.html#isfirebaseurl\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"url\"},{\"id\":183,\"kind\":64,\"name\":\"convertFirebaseURL\",\"url\":\"modules/url.html#convertfirebaseurl\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"url\"},{\"id\":184,\"kind\":64,\"name\":\"default\",\"url\":\"modules/url.html#default\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"url\"},{\"id\":185,\"kind\":1,\"name\":\"user\",\"url\":\"modules/user.html\",\"classes\":\"tsd-kind-module\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,28.409,1,30.812]],[\"parent/0\",[]],[\"name/1\",[2,43.337]],[\"parent/1\",[0,2.77,1,3.004]],[\"name/2\",[3,26.614,4,28.409]],[\"parent/2\",[]],[\"name/3\",[5,48.467]],[\"parent/3\",[3,2.595,4,2.77]],[\"name/4\",[6,43.337]],[\"parent/4\",[3,2.595,7,3.004]],[\"name/5\",[8,43.337]],[\"parent/5\",[3,2.595,7,3.004]],[\"name/6\",[9,39.957]],[\"parent/6\",[]],[\"name/7\",[10,37.433]],[\"parent/7\",[9,3.925]],[\"name/8\",[11,48.467]],[\"parent/8\",[12,4.257]],[\"name/9\",[13,48.467]],[\"parent/9\",[12,4.257]],[\"name/10\",[14,35.418]],[\"parent/10\",[]],[\"name/11\",[15,48.467]],[\"parent/11\",[14,3.479]],[\"name/12\",[16,48.467]],[\"parent/12\",[17,3.314]],[\"name/13\",[18,43.337]],[\"parent/13\",[17,3.314]],[\"name/14\",[19,48.467]],[\"parent/14\",[17,3.314]],[\"name/15\",[20,48.467]],[\"parent/15\",[17,3.314]],[\"name/16\",[21,39.957]],[\"parent/16\",[17,3.314]],[\"name/17\",[22,43.337]],[\"parent/17\",[17,3.314]],[\"name/18\",[23,48.467]],[\"parent/18\",[14,3.479]],[\"name/19\",[24,48.467]],[\"parent/19\",[25,1.822]],[\"name/20\",[26,48.467]],[\"parent/20\",[25,1.822]],[\"name/21\",[27,37.433]],[\"parent/21\",[25,1.822]],[\"name/22\",[9,39.957]],[\"parent/22\",[25,1.822]],[\"name/23\",[27,37.433]],[\"parent/23\",[25,1.822]],[\"name/24\",[28,48.467]],[\"parent/24\",[25,1.822]],[\"name/25\",[29,48.467]],[\"parent/25\",[25,1.822]],[\"name/26\",[30,48.467]],[\"parent/26\",[25,1.822]],[\"name/27\",[18,43.337]],[\"parent/27\",[25,1.822]],[\"name/28\",[21,39.957]],[\"parent/28\",[25,1.822]],[\"name/29\",[22,43.337]],[\"parent/29\",[25,1.822]],[\"name/30\",[31,48.467]],[\"parent/30\",[25,1.822]],[\"name/31\",[0,39.957]],[\"parent/31\",[25,1.822]],[\"name/32\",[32,48.467]],[\"parent/32\",[25,1.822]],[\"name/33\",[33,48.467]],[\"parent/33\",[25,1.822]],[\"name/34\",[34,43.337]],[\"parent/34\",[25,1.822]],[\"name/35\",[35,48.467]],[\"parent/35\",[25,1.822]],[\"name/36\",[36,33.74]],[\"parent/36\",[25,1.822]],[\"name/37\",[37,48.467]],[\"parent/37\",[25,1.822]],[\"name/38\",[2,43.337]],[\"parent/38\",[25,1.822]],[\"name/39\",[38,48.467]],[\"parent/39\",[25,1.822]],[\"name/40\",[39,48.467]],[\"parent/40\",[25,1.822]],[\"name/41\",[40,48.467]],[\"parent/41\",[25,1.822]],[\"name/42\",[41,48.467]],[\"parent/42\",[25,1.822]],[\"name/43\",[42,43.337]],[\"parent/43\",[25,1.822]],[\"name/44\",[43,43.337]],[\"parent/44\",[25,1.822]],[\"name/45\",[44,43.337]],[\"parent/45\",[25,1.822]],[\"name/46\",[45,48.467]],[\"parent/46\",[25,1.822]],[\"name/47\",[46,48.467]],[\"parent/47\",[25,1.822]],[\"name/48\",[47,48.467]],[\"parent/48\",[14,3.479]],[\"name/49\",[10,37.433]],[\"parent/49\",[14,3.479]],[\"name/50\",[48,33.74]],[\"parent/50\",[]],[\"name/51\",[49,37.433]],[\"parent/51\",[48,3.314]],[\"name/52\",[50,37.433]],[\"parent/52\",[51,2.337]],[\"name/53\",[52,48.467]],[\"parent/53\",[51,2.337]],[\"name/54\",[53,48.467]],[\"parent/54\",[51,2.337]],[\"name/55\",[54,48.467]],[\"parent/55\",[51,2.337]],[\"name/56\",[55,48.467]],[\"parent/56\",[51,2.337]],[\"name/57\",[56,37.433]],[\"parent/57\",[51,2.337]],[\"name/58\",[57,39.957]],[\"parent/58\",[51,2.337]],[\"name/59\",[58,48.467]],[\"parent/59\",[51,2.337]],[\"name/60\",[59,48.467]],[\"parent/60\",[51,2.337]],[\"name/61\",[60,48.467]],[\"parent/61\",[51,2.337]],[\"name/62\",[61,48.467]],[\"parent/62\",[51,2.337]],[\"name/63\",[62,48.467]],[\"parent/63\",[51,2.337]],[\"name/64\",[63,37.433]],[\"parent/64\",[51,2.337]],[\"name/65\",[64,48.467]],[\"parent/65\",[51,2.337]],[\"name/66\",[65,39.957]],[\"parent/66\",[51,2.337]],[\"name/67\",[66,39.957]],[\"parent/67\",[51,2.337]],[\"name/68\",[67,48.467]],[\"parent/68\",[51,2.337]],[\"name/69\",[68,48.467]],[\"parent/69\",[48,3.314]],[\"name/70\",[50,37.433]],[\"parent/70\",[69,1.639]],[\"name/71\",[70,48.467]],[\"parent/71\",[69,1.639]],[\"name/72\",[63,37.433]],[\"parent/72\",[69,1.639]],[\"name/73\",[71,48.467]],[\"parent/73\",[69,1.639]],[\"name/74\",[72,48.467]],[\"parent/74\",[69,1.639]],[\"name/75\",[73,48.467]],[\"parent/75\",[69,1.639]],[\"name/76\",[74,48.467]],[\"parent/76\",[69,1.639]],[\"name/77\",[56,37.433]],[\"parent/77\",[69,1.639]],[\"name/78\",[57,39.957]],[\"parent/78\",[69,1.639]],[\"name/79\",[4,39.957]],[\"parent/79\",[69,1.639]],[\"name/80\",[27,37.433]],[\"parent/80\",[69,1.639]],[\"name/81\",[75,48.467]],[\"parent/81\",[76,4.761]],[\"name/82\",[77,48.467]],[\"parent/82\",[69,1.639]],[\"name/83\",[78,48.467]],[\"parent/83\",[69,1.639]],[\"name/84\",[79,43.337]],[\"parent/84\",[69,1.639]],[\"name/85\",[80,48.467]],[\"parent/85\",[69,1.639]],[\"name/86\",[81,43.337]],[\"parent/86\",[69,1.639]],[\"name/87\",[82,43.337]],[\"parent/87\",[69,1.639]],[\"name/88\",[83,48.467]],[\"parent/88\",[69,1.639]],[\"name/89\",[84,43.337]],[\"parent/89\",[69,1.639]],[\"name/90\",[85,43.337]],[\"parent/90\",[69,1.639]],[\"name/91\",[86,43.337]],[\"parent/91\",[69,1.639]],[\"name/92\",[87,43.337]],[\"parent/92\",[69,1.639]],[\"name/93\",[88,48.467]],[\"parent/93\",[69,1.639]],[\"name/94\",[89,43.337]],[\"parent/94\",[69,1.639]],[\"name/95\",[90,48.467]],[\"parent/95\",[69,1.639]],[\"name/96\",[66,39.957]],[\"parent/96\",[69,1.639]],[\"name/97\",[91,48.467]],[\"parent/97\",[69,1.639]],[\"name/98\",[92,43.337]],[\"parent/98\",[69,1.639]],[\"name/99\",[93,43.337]],[\"parent/99\",[69,1.639]],[\"name/100\",[94,43.337]],[\"parent/100\",[69,1.639]],[\"name/101\",[95,48.467]],[\"parent/101\",[69,1.639]],[\"name/102\",[96,43.337]],[\"parent/102\",[69,1.639]],[\"name/103\",[65,39.957]],[\"parent/103\",[69,1.639]],[\"name/104\",[49,37.433]],[\"parent/104\",[69,1.639]],[\"name/105\",[97,48.467]],[\"parent/105\",[69,1.639]],[\"name/106\",[98,48.467]],[\"parent/106\",[48,3.314]],[\"name/107\",[79,43.337]],[\"parent/107\",[99,1.726]],[\"name/108\",[65,39.957]],[\"parent/108\",[99,1.726]],[\"name/109\",[86,43.337]],[\"parent/109\",[99,1.726]],[\"name/110\",[85,43.337]],[\"parent/110\",[99,1.726]],[\"name/111\",[96,43.337]],[\"parent/111\",[99,1.726]],[\"name/112\",[100,48.467]],[\"parent/112\",[99,1.726]],[\"name/113\",[57,39.957]],[\"parent/113\",[99,1.726]],[\"name/114\",[66,39.957]],[\"parent/114\",[99,1.726]],[\"name/115\",[87,43.337]],[\"parent/115\",[99,1.726]],[\"name/116\",[84,43.337]],[\"parent/116\",[99,1.726]],[\"name/117\",[101,48.467]],[\"parent/117\",[99,1.726]],[\"name/118\",[82,43.337]],[\"parent/118\",[99,1.726]],[\"name/119\",[102,48.467]],[\"parent/119\",[99,1.726]],[\"name/120\",[94,43.337]],[\"parent/120\",[99,1.726]],[\"name/121\",[89,43.337]],[\"parent/121\",[99,1.726]],[\"name/122\",[103,48.467]],[\"parent/122\",[99,1.726]],[\"name/123\",[104,48.467]],[\"parent/123\",[99,1.726]],[\"name/124\",[63,37.433]],[\"parent/124\",[99,1.726]],[\"name/125\",[105,48.467]],[\"parent/125\",[99,1.726]],[\"name/126\",[93,43.337]],[\"parent/126\",[99,1.726]],[\"name/127\",[106,48.467]],[\"parent/127\",[99,1.726]],[\"name/128\",[107,48.467]],[\"parent/128\",[99,1.726]],[\"name/129\",[56,37.433]],[\"parent/129\",[99,1.726]],[\"name/130\",[92,43.337]],[\"parent/130\",[99,1.726]],[\"name/131\",[50,37.433]],[\"parent/131\",[99,1.726]],[\"name/132\",[108,48.467]],[\"parent/132\",[99,1.726]],[\"name/133\",[109,48.467]],[\"parent/133\",[99,1.726]],[\"name/134\",[81,43.337]],[\"parent/134\",[99,1.726]],[\"name/135\",[110,48.467]],[\"parent/135\",[99,1.726]],[\"name/136\",[49,37.433]],[\"parent/136\",[99,1.726]],[\"name/137\",[111,48.467]],[\"parent/137\",[99,1.726]],[\"name/138\",[112,48.467]],[\"parent/138\",[99,1.726]],[\"name/139\",[113,48.467]],[\"parent/139\",[48,3.314]],[\"name/140\",[114,31.046]],[\"parent/140\",[115,3.479]],[\"name/141\",[116,48.467]],[\"parent/141\",[115,3.479]],[\"name/142\",[117,48.467]],[\"parent/142\",[115,3.479]],[\"name/143\",[8,43.337]],[\"parent/143\",[115,3.479]],[\"name/144\",[27,37.433]],[\"parent/144\",[115,3.479]],[\"name/145\",[6,43.337]],[\"parent/145\",[118,4.257]],[\"name/146\",[119,48.467]],[\"parent/146\",[118,4.257]],[\"name/147\",[34,43.337]],[\"parent/147\",[48,3.314]],[\"name/148\",[120,39.957]],[\"parent/148\",[]],[\"name/149\",[121,48.467]],[\"parent/149\",[120,3.925]],[\"name/150\",[56,37.433]],[\"parent/150\",[122,3.925]],[\"name/151\",[50,37.433]],[\"parent/151\",[122,3.925]],[\"name/152\",[123,48.467]],[\"parent/152\",[122,3.925]],[\"name/153\",[124,48.467]],[\"parent/153\",[120,3.925]],[\"name/154\",[125,48.467]],[\"parent/154\",[126,3.479]],[\"name/155\",[63,37.433]],[\"parent/155\",[126,3.479]],[\"name/156\",[127,43.337]],[\"parent/156\",[126,3.479]],[\"name/157\",[128,43.337]],[\"parent/157\",[126,3.479]],[\"name/158\",[129,43.337]],[\"parent/158\",[126,3.479]],[\"name/159\",[130,43.337]],[\"parent/159\",[]],[\"name/160\",[10,37.433]],[\"parent/160\",[130,4.257]],[\"name/161\",[131,48.467]],[\"parent/161\",[132,4.257]],[\"name/162\",[133,48.467]],[\"parent/162\",[132,4.257]],[\"name/163\",[36,33.74]],[\"parent/163\",[]],[\"name/164\",[134,48.467]],[\"parent/164\",[36,3.314]],[\"name/165\",[135,48.467]],[\"parent/165\",[136,3.479]],[\"name/166\",[137,48.467]],[\"parent/166\",[136,3.479]],[\"name/167\",[138,48.467]],[\"parent/167\",[136,3.479]],[\"name/168\",[139,48.467]],[\"parent/168\",[136,3.479]],[\"name/169\",[140,48.467]],[\"parent/169\",[136,3.479]],[\"name/170\",[141,48.467]],[\"parent/170\",[36,3.314]],[\"name/171\",[127,43.337]],[\"parent/171\",[142,3.479]],[\"name/172\",[128,43.337]],[\"parent/172\",[142,3.479]],[\"name/173\",[143,48.467]],[\"parent/173\",[142,3.479]],[\"name/174\",[144,48.467]],[\"parent/174\",[142,3.479]],[\"name/175\",[129,43.337]],[\"parent/175\",[142,3.479]],[\"name/176\",[145,48.467]],[\"parent/176\",[36,3.314]],[\"name/177\",[146,48.467]],[\"parent/177\",[36,3.314]],[\"name/178\",[114,31.046]],[\"parent/178\",[]],[\"name/179\",[42,43.337]],[\"parent/179\",[114,3.049]],[\"name/180\",[43,43.337]],[\"parent/180\",[114,3.049]],[\"name/181\",[21,39.957]],[\"parent/181\",[114,3.049]],[\"name/182\",[44,43.337]],[\"parent/182\",[114,3.049]],[\"name/183\",[147,48.467]],[\"parent/183\",[114,3.049]],[\"name/184\",[10,37.433]],[\"parent/184\",[114,3.049]],[\"name/185\",[49,37.433]],[\"parent/185\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":27,\"name\":{\"21\":{},\"23\":{},\"80\":{},\"144\":{}},\"parent\":{}}],[\"_clientid\",{\"_index\":28,\"name\":{\"24\":{}},\"parent\":{}}],[\"_filepath\",{\"_index\":29,\"name\":{\"25\":{}},\"parent\":{}}],[\"artwork_url\",{\"_index\":81,\"name\":{\"86\":{},\"134\":{}},\"parent\":{}}],[\"avatar_url\",{\"_index\":52,\"name\":{\"53\":{}},\"parent\":{}}],[\"axios\",{\"_index\":30,\"name\":{\"26\":{}},\"parent\":{}}],[\"axiosinstance\",{\"_index\":20,\"name\":{\"15\":{}},\"parent\":{}}],[\"city\",{\"_index\":53,\"name\":{\"54\":{}},\"parent\":{}}],[\"clientid\",{\"_index\":16,\"name\":{\"12\":{}},\"parent\":{}}],[\"collection\",{\"_index\":137,\"name\":{\"166\":{}},\"parent\":{}}],[\"comment_count\",{\"_index\":72,\"name\":{\"74\":{}},\"parent\":{}}],[\"commentable\",{\"_index\":90,\"name\":{\"95\":{}},\"parent\":{}}],[\"comments_count\",{\"_index\":54,\"name\":{\"55\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":24,\"name\":{\"19\":{}},\"parent\":{}}],[\"convertfirebaselinks\",{\"_index\":22,\"name\":{\"17\":{},\"29\":{}},\"parent\":{}}],[\"convertfirebaseurl\",{\"_index\":147,\"name\":{\"183\":{}},\"parent\":{}}],[\"country_code\",{\"_index\":55,\"name\":{\"56\":{}},\"parent\":{}}],[\"create\",{\"_index\":47,\"name\":{\"48\":{}},\"parent\":{}}],[\"created_at\",{\"_index\":56,\"name\":{\"57\":{},\"77\":{},\"129\":{},\"150\":{}},\"parent\":{}}],[\"default\",{\"_index\":10,\"name\":{\"7\":{},\"49\":{},\"160\":{},\"184\":{}},\"parent\":{}}],[\"description\",{\"_index\":57,\"name\":{\"58\":{},\"78\":{},\"113\":{}},\"parent\":{}}],[\"display_date\",{\"_index\":93,\"name\":{\"99\":{},\"126\":{}},\"parent\":{}}],[\"download\",{\"_index\":0,\"name\":{\"0\":{},\"31\":{}},\"parent\":{\"1\":{}}}],[\"download_count\",{\"_index\":91,\"name\":{\"97\":{}},\"parent\":{}}],[\"downloadable\",{\"_index\":74,\"name\":{\"76\":{}},\"parent\":{}}],[\"downloadformat\",{\"_index\":32,\"name\":{\"32\":{}},\"parent\":{}}],[\"downloadplaylist\",{\"_index\":2,\"name\":{\"1\":{},\"38\":{}},\"parent\":{}}],[\"duration\",{\"_index\":79,\"name\":{\"84\":{},\"107\":{}},\"parent\":{}}],[\"embeddable_by\",{\"_index\":112,\"name\":{\"138\":{}},\"parent\":{}}],[\"filepath\",{\"_index\":19,\"name\":{\"14\":{}},\"parent\":{}}],[\"filter\",{\"_index\":3,\"name\":{\"2\":{}},\"parent\":{\"3\":{},\"4\":{},\"5\":{}}}],[\"filtermedia\",{\"_index\":31,\"name\":{\"30\":{}},\"parent\":{}}],[\"filterpredicateobject\",{\"_index\":5,\"name\":{\"3\":{}},\"parent\":{}}],[\"first_name\",{\"_index\":60,\"name\":{\"61\":{}},\"parent\":{}}],[\"followers_count\",{\"_index\":58,\"name\":{\"59\":{}},\"parent\":{}}],[\"followings_count\",{\"_index\":59,\"name\":{\"60\":{}},\"parent\":{}}],[\"format\",{\"_index\":8,\"name\":{\"5\":{},\"143\":{}},\"parent\":{}}],[\"formats\",{\"_index\":9,\"name\":{\"6\":{},\"22\":{}},\"parent\":{\"7\":{}}}],[\"formats.default\",{\"_index\":12,\"name\":{},\"parent\":{\"8\":{},\"9\":{}}}],[\"full_duration\",{\"_index\":73,\"name\":{\"75\":{}},\"parent\":{}}],[\"full_name\",{\"_index\":61,\"name\":{\"62\":{}},\"parent\":{}}],[\"genre\",{\"_index\":85,\"name\":{\"90\":{},\"110\":{}},\"parent\":{}}],[\"getclientid\",{\"_index\":45,\"name\":{\"46\":{}},\"parent\":{}}],[\"getinfo\",{\"_index\":33,\"name\":{\"33\":{}},\"parent\":{}}],[\"getlikes\",{\"_index\":38,\"name\":{\"39\":{}},\"parent\":{}}],[\"getlikesoptions\",{\"_index\":124,\"name\":{\"153\":{}},\"parent\":{}}],[\"getsetinfo\",{\"_index\":35,\"name\":{\"35\":{}},\"parent\":{}}],[\"gettrackinfobyid\",{\"_index\":34,\"name\":{\"34\":{},\"147\":{}},\"parent\":{}}],[\"getuser\",{\"_index\":39,\"name\":{\"40\":{}},\"parent\":{}}],[\"groups_count\",{\"_index\":62,\"name\":{\"63\":{}},\"parent\":{}}],[\"has_downloads_left\",{\"_index\":80,\"name\":{\"85\":{}},\"parent\":{}}],[\"hls\",{\"_index\":131,\"name\":{\"161\":{}},\"parent\":{}}],[\"id\",{\"_index\":63,\"name\":{\"64\":{},\"72\":{},\"124\":{},\"155\":{}},\"parent\":{}}],[\"index\",{\"_index\":14,\"name\":{\"10\":{}},\"parent\":{\"11\":{},\"18\":{},\"48\":{},\"49\":{}}}],[\"index.scdl\",{\"_index\":25,\"name\":{},\"parent\":{\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{}}}],[\"index.scdloptions\",{\"_index\":17,\"name\":{},\"parent\":{\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{}}}],[\"info\",{\"_index\":48,\"name\":{\"50\":{}},\"parent\":{\"51\":{},\"69\":{},\"106\":{},\"139\":{},\"147\":{}}}],[\"info.setinfo\",{\"_index\":99,\"name\":{},\"parent\":{\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{}}}],[\"info.trackinfo\",{\"_index\":69,\"name\":{},\"parent\":{\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{}}}],[\"info.trackinfo.__type\",{\"_index\":76,\"name\":{},\"parent\":{\"81\":{}}}],[\"info.transcoding\",{\"_index\":115,\"name\":{},\"parent\":{\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{}}}],[\"info.transcoding.__type\",{\"_index\":118,\"name\":{},\"parent\":{\"145\":{},\"146\":{}}}],[\"info.user\",{\"_index\":51,\"name\":{},\"parent\":{\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{}}}],[\"is_album\",{\"_index\":110,\"name\":{\"135\":{}},\"parent\":{}}],[\"isfirebaseurl\",{\"_index\":44,\"name\":{\"45\":{},\"182\":{}},\"parent\":{}}],[\"ispersonalizedtrackurl\",{\"_index\":43,\"name\":{\"44\":{},\"180\":{}},\"parent\":{}}],[\"isplaylisturl\",{\"_index\":42,\"name\":{\"43\":{},\"179\":{}},\"parent\":{}}],[\"isvalidurl\",{\"_index\":41,\"name\":{\"42\":{}},\"parent\":{}}],[\"kind\",{\"_index\":50,\"name\":{\"52\":{},\"70\":{},\"131\":{},\"151\":{}},\"parent\":{}}],[\"label_name\",{\"_index\":87,\"name\":{\"92\":{},\"115\":{}},\"parent\":{}}],[\"last_modified\",{\"_index\":89,\"name\":{\"94\":{},\"121\":{}},\"parent\":{}}],[\"last_name\",{\"_index\":64,\"name\":{\"65\":{}},\"parent\":{}}],[\"license\",{\"_index\":103,\"name\":{\"122\":{}},\"parent\":{}}],[\"like\",{\"_index\":121,\"name\":{\"149\":{}},\"parent\":{}}],[\"likes\",{\"_index\":120,\"name\":{\"148\":{}},\"parent\":{\"149\":{},\"153\":{}}}],[\"likes.getlikesoptions\",{\"_index\":126,\"name\":{},\"parent\":{\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{}}}],[\"likes.like\",{\"_index\":122,\"name\":{},\"parent\":{\"150\":{},\"151\":{},\"152\":{}}}],[\"likes_count\",{\"_index\":92,\"name\":{\"98\":{},\"130\":{}},\"parent\":{}}],[\"limit\",{\"_index\":127,\"name\":{\"156\":{},\"171\":{}},\"parent\":{}}],[\"managed_by_feeds\",{\"_index\":109,\"name\":{\"133\":{}},\"parent\":{}}],[\"media\",{\"_index\":4,\"name\":{\"2\":{},\"79\":{}},\"parent\":{\"3\":{}}}],[\"media.filterpredicateobject\",{\"_index\":7,\"name\":{},\"parent\":{\"4\":{},\"5\":{}}}],[\"mime_type\",{\"_index\":119,\"name\":{\"146\":{}},\"parent\":{}}],[\"monetization_model\",{\"_index\":70,\"name\":{\"71\":{}},\"parent\":{}}],[\"mp3\",{\"_index\":11,\"name\":{\"8\":{}},\"parent\":{}}],[\"next_href\",{\"_index\":139,\"name\":{\"168\":{}},\"parent\":{}}],[\"nexthref\",{\"_index\":129,\"name\":{\"158\":{},\"175\":{}},\"parent\":{}}],[\"offset\",{\"_index\":128,\"name\":{\"157\":{},\"172\":{}},\"parent\":{}}],[\"opus\",{\"_index\":13,\"name\":{\"9\":{}},\"parent\":{}}],[\"permalink\",{\"_index\":96,\"name\":{\"102\":{},\"111\":{}},\"parent\":{}}],[\"permalink_url\",{\"_index\":65,\"name\":{\"66\":{},\"103\":{},\"108\":{}},\"parent\":{}}],[\"playback_count\",{\"_index\":97,\"name\":{\"105\":{}},\"parent\":{}}],[\"playlist\",{\"_index\":1,\"name\":{\"0\":{}},\"parent\":{\"1\":{}}}],[\"policy\",{\"_index\":71,\"name\":{\"73\":{}},\"parent\":{}}],[\"prepareurl\",{\"_index\":46,\"name\":{\"47\":{}},\"parent\":{}}],[\"preset\",{\"_index\":116,\"name\":{\"141\":{}},\"parent\":{}}],[\"profileurl\",{\"_index\":125,\"name\":{\"154\":{}},\"parent\":{}}],[\"progressive\",{\"_index\":133,\"name\":{\"162\":{}},\"parent\":{}}],[\"protocol\",{\"_index\":6,\"name\":{\"4\":{},\"145\":{}},\"parent\":{}}],[\"protocols\",{\"_index\":130,\"name\":{\"159\":{}},\"parent\":{\"160\":{}}}],[\"protocols.default\",{\"_index\":132,\"name\":{},\"parent\":{\"161\":{},\"162\":{}}}],[\"public\",{\"_index\":82,\"name\":{\"87\":{},\"118\":{}},\"parent\":{}}],[\"published_at\",{\"_index\":111,\"name\":{\"137\":{}},\"parent\":{}}],[\"publisher_metadata\",{\"_index\":78,\"name\":{\"83\":{}},\"parent\":{}}],[\"purchase_title\",{\"_index\":108,\"name\":{\"132\":{}},\"parent\":{}}],[\"purchase_url\",{\"_index\":100,\"name\":{\"112\":{}},\"parent\":{}}],[\"query\",{\"_index\":144,\"name\":{\"174\":{}},\"parent\":{}}],[\"query_urn\",{\"_index\":140,\"name\":{\"169\":{}},\"parent\":{}}],[\"related\",{\"_index\":37,\"name\":{\"37\":{}},\"parent\":{}}],[\"relatedresponse\",{\"_index\":134,\"name\":{\"164\":{}},\"parent\":{}}],[\"release_date\",{\"_index\":105,\"name\":{\"125\":{}},\"parent\":{}}],[\"reposts_count\",{\"_index\":86,\"name\":{\"91\":{},\"109\":{}},\"parent\":{}}],[\"resourcetype\",{\"_index\":143,\"name\":{\"173\":{}},\"parent\":{}}],[\"saveclientid\",{\"_index\":18,\"name\":{\"13\":{},\"27\":{}},\"parent\":{}}],[\"scdl\",{\"_index\":23,\"name\":{\"18\":{}},\"parent\":{}}],[\"scdloptions\",{\"_index\":15,\"name\":{\"11\":{}},\"parent\":{}}],[\"search\",{\"_index\":36,\"name\":{\"36\":{},\"163\":{}},\"parent\":{\"164\":{},\"170\":{},\"176\":{},\"177\":{}}}],[\"search.relatedresponse\",{\"_index\":136,\"name\":{},\"parent\":{\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{}}}],[\"search.searchoptions\",{\"_index\":142,\"name\":{},\"parent\":{\"171\":{},\"172\":{},\"173\":{},\"174\":{},\"175\":{}}}],[\"searchoptions\",{\"_index\":141,\"name\":{\"170\":{}},\"parent\":{}}],[\"searchresponseall\",{\"_index\":145,\"name\":{\"176\":{}},\"parent\":{}}],[\"secret_token\",{\"_index\":107,\"name\":{\"128\":{}},\"parent\":{}}],[\"set_type\",{\"_index\":101,\"name\":{\"117\":{}},\"parent\":{}}],[\"setaxiosinstance\",{\"_index\":40,\"name\":{\"41\":{}},\"parent\":{}}],[\"setinfo\",{\"_index\":98,\"name\":{\"106\":{}},\"parent\":{}}],[\"sharing\",{\"_index\":106,\"name\":{\"127\":{}},\"parent\":{}}],[\"snipped\",{\"_index\":117,\"name\":{\"142\":{}},\"parent\":{}}],[\"soundcloudresource\",{\"_index\":146,\"name\":{\"177\":{}},\"parent\":{}}],[\"state\",{\"_index\":88,\"name\":{\"93\":{}},\"parent\":{}}],[\"streamable\",{\"_index\":83,\"name\":{\"88\":{}},\"parent\":{}}],[\"streaming_protocols\",{\"_index\":26,\"name\":{\"20\":{}},\"parent\":{}}],[\"stripmobileprefix\",{\"_index\":21,\"name\":{\"16\":{},\"28\":{},\"181\":{}},\"parent\":{}}],[\"tag_list\",{\"_index\":84,\"name\":{\"89\":{},\"116\":{}},\"parent\":{}}],[\"title\",{\"_index\":77,\"name\":{\"82\":{}},\"parent\":{}}],[\"total_results\",{\"_index\":138,\"name\":{\"167\":{}},\"parent\":{}}],[\"track\",{\"_index\":123,\"name\":{\"152\":{}},\"parent\":{}}],[\"track_count\",{\"_index\":102,\"name\":{\"119\":{}},\"parent\":{}}],[\"trackinfo\",{\"_index\":68,\"name\":{\"69\":{}},\"parent\":{}}],[\"tracks\",{\"_index\":104,\"name\":{\"123\":{}},\"parent\":{}}],[\"transcoding\",{\"_index\":113,\"name\":{\"139\":{}},\"parent\":{}}],[\"transcodings\",{\"_index\":75,\"name\":{\"81\":{}},\"parent\":{}}],[\"uri\",{\"_index\":66,\"name\":{\"67\":{},\"96\":{},\"114\":{}},\"parent\":{}}],[\"url\",{\"_index\":114,\"name\":{\"140\":{},\"178\":{}},\"parent\":{\"179\":{},\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{}}}],[\"user\",{\"_index\":49,\"name\":{\"51\":{},\"104\":{},\"136\":{},\"185\":{}},\"parent\":{}}],[\"user_id\",{\"_index\":94,\"name\":{\"100\":{},\"120\":{}},\"parent\":{}}],[\"username\",{\"_index\":67,\"name\":{\"68\":{}},\"parent\":{}}],[\"variant\",{\"_index\":135,\"name\":{\"165\":{}},\"parent\":{}}],[\"waveform_url\",{\"_index\":95,\"name\":{\"101\":{}},\"parent\":{}}]],\"pipeline\":[]}}"
  },
  {
    "path": "docs/classes/index.scdl.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>SCDL | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"index.scdl.html\">SCDL</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Class SCDL</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">SCDL</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Constructors</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-constructor tsd-parent-kind-class\"><a href=\"index.scdl.html#constructor\" class=\"tsd-kind-icon\">constructor</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class\"><a href=\"index.scdl.html#formats\" class=\"tsd-kind-icon\">FORMATS</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class\"><a href=\"index.scdl.html#streaming_protocols\" class=\"tsd-kind-icon\">STREAMING_<wbr>PROTOCOLS</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class tsd-is-private\"><a href=\"index.scdl.html#_clientid\" class=\"tsd-kind-icon\">_clientID</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class tsd-is-private\"><a href=\"index.scdl.html#_filepath\" class=\"tsd-kind-icon\">_file<wbr>Path</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class\"><a href=\"index.scdl.html#axios\" class=\"tsd-kind-icon\">axios</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class\"><a href=\"index.scdl.html#convertfirebaselinks\" class=\"tsd-kind-icon\">convert<wbr>Firebase<wbr>Links</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class\"><a href=\"index.scdl.html#saveclientid\" class=\"tsd-kind-icon\">save<wbr>ClientID</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class\"><a href=\"index.scdl.html#stripmobileprefix\" class=\"tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Methods</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#download\" class=\"tsd-kind-icon\">download</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#downloadformat\" class=\"tsd-kind-icon\">download<wbr>Format</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#downloadplaylist\" class=\"tsd-kind-icon\">download<wbr>Playlist</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#filtermedia\" class=\"tsd-kind-icon\">filter<wbr>Media</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#getclientid\" class=\"tsd-kind-icon\">get<wbr>ClientID</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#getinfo\" class=\"tsd-kind-icon\">get<wbr>Info</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#getlikes\" class=\"tsd-kind-icon\">get<wbr>Likes</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#getsetinfo\" class=\"tsd-kind-icon\">get<wbr>Set<wbr>Info</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#gettrackinfobyid\" class=\"tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#getuser\" class=\"tsd-kind-icon\">get<wbr>User</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#isfirebaseurl\" class=\"tsd-kind-icon\">is<wbr>FirebaseURL</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#ispersonalizedtrackurl\" class=\"tsd-kind-icon\">is<wbr>Personalized<wbr>TrackURL</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#isplaylisturl\" class=\"tsd-kind-icon\">is<wbr>PlaylistURL</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#isvalidurl\" class=\"tsd-kind-icon\">is<wbr>Valid<wbr>Url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#prepareurl\" class=\"tsd-kind-icon\">prepareURL</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#related\" class=\"tsd-kind-icon\">related</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#search\" class=\"tsd-kind-icon\">search</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><a href=\"index.scdl.html#setaxiosinstance\" class=\"tsd-kind-icon\">set<wbr>Axios<wbr>Instance</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Constructors</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"constructor\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>constructor</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-constructor tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">new SCDL<span class=\"tsd-signature-symbol\">(</span>options<span class=\"tsd-signature-symbol\">?: </span><a href=\"../interfaces/index.scdloptions.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SCDLOptions</a><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><a href=\"index.scdl.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Class\">SCDL</a></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L61\">index.ts:61</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5><span class=\"tsd-flag ts-flagOptional\">Optional</span> options: <a href=\"../interfaces/index.scdloptions.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SCDLOptions</a></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <a href=\"index.scdl.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Class\">SCDL</a></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"formats\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>FORMATS</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">FORMATS<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-symbol\">{}</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L52\">index.ts:52</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t\t<div class=\"tsd-type-declaration\">\n\t\t\t\t\t\t<h4>Type declaration</h4>\n\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t<li class=\"tsd-parameter-index-signature\">\n\t\t\t\t\t\t\t\t<h5><span class=\"tsd-signature-symbol\">[</span>key: <span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">]: </span><a href=\"../enums/formats.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a></h5>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"streaming_protocols\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>STREAMING_<wbr>PROTOCOLS</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">STREAMING_<wbr>PROTOCOLS<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-symbol\">{}</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L51\">index.ts:51</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t\t<div class=\"tsd-type-declaration\">\n\t\t\t\t\t\t<h4>Type declaration</h4>\n\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t<li class=\"tsd-parameter-index-signature\">\n\t\t\t\t\t\t\t\t<h5><span class=\"tsd-signature-symbol\">[</span>key: <span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">]: </span><a href=\"../enums/protocols.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a></h5>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private\">\n\t\t\t\t\t<a name=\"_clientid\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagPrivate\">Private</span> <span class=\"tsd-flag ts-flagOptional\">Optional</span> _clientID</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">_clientID<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L54\">index.ts:54</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private\">\n\t\t\t\t\t<a name=\"_filepath\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagPrivate\">Private</span> <span class=\"tsd-flag ts-flagOptional\">Optional</span> _file<wbr>Path</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">_file<wbr>Path<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L55\">index.ts:55</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"axios\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>axios</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">axios<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">AxiosInstance</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L57\">index.ts:57</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"convertfirebaselinks\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>convert<wbr>Firebase<wbr>Links</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">convert<wbr>Firebase<wbr>Links<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L61\">index.ts:61</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"saveclientid\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>save<wbr>ClientID</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">save<wbr>ClientID<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span><span class=\"tsd-signature-symbol\"> = ...</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L58\">index.ts:58</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"stripmobileprefix\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>strip<wbr>Mobile<wbr>Prefix</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L60\">index.ts:60</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Methods</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"download\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>download</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">download<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span>, useDirectLink<span class=\"tsd-signature-symbol\">?: </span><span class=\"tsd-signature-type\">boolean</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">any</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L104\">index.ts:104</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Get the audio of a given track. It returns the first format found.</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The URL of the Soundcloud track</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>useDirectLink: <span class=\"tsd-signature-type\">boolean</span><span class=\"tsd-signature-symbol\"> = true</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>Whether or not to use the download link if the artist has set the track to be downloadable. This has erratic behaviour on some environments.</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">any</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t\t<p>A ReadableStream containing the audio data</p>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"downloadformat\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>download<wbr>Format</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">download<wbr>Format<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span>, format<span class=\"tsd-signature-symbol\">: </span><a href=\"../enums/formats.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">any</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L113\">index.ts:113</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p> Get the audio of a given track with the specified format</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The URL of the Soundcloud track</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>format: <a href=\"../enums/formats.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The desired format</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">any</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"downloadplaylist\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>download<wbr>Playlist</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">download<wbr>Playlist<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-symbol\">[</span><span class=\"tsd-signature-type\">ReadableStream</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">any</span><span class=\"tsd-signature-symbol\">&gt;</span><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">, </span><span class=\"tsd-signature-type\">String</span><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">]</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L167\">index.ts:167</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns the audio streams and titles of the tracks in the given playlist.</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The url of the playlist</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-symbol\">[</span><span class=\"tsd-signature-type\">ReadableStream</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">any</span><span class=\"tsd-signature-symbol\">&gt;</span><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">, </span><span class=\"tsd-signature-type\">String</span><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">]</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"filtermedia\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>filter<wbr>Media</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">filter<wbr>Media<span class=\"tsd-signature-symbol\">(</span>media<span class=\"tsd-signature-symbol\">: </span><a href=\"../interfaces/info.transcoding.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">Transcoding</a><span class=\"tsd-signature-symbol\">[]</span>, predicateObj<span class=\"tsd-signature-symbol\">: </span><a href=\"../interfaces/filter_media.filterpredicateobject.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">FilterPredicateObject</a><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><a href=\"../interfaces/info.transcoding.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">Transcoding</a><span class=\"tsd-signature-symbol\">[]</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L93\">index.ts:93</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns a media Transcoding that matches the given predicate object</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>media: <a href=\"../interfaces/info.transcoding.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">Transcoding</a><span class=\"tsd-signature-symbol\">[]</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The Transcodings to filter</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>predicateObj: <a href=\"../interfaces/filter_media.filterpredicateobject.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">FilterPredicateObject</a></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The desired Transcoding object to match</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <a href=\"../interfaces/info.transcoding.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">Transcoding</a><span class=\"tsd-signature-symbol\">[]</span></h4>\n\t\t\t\t\t\t\t<p>An array of Transcodings that match the predicate object</p>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"getclientid\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>get<wbr>ClientID</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">get<wbr>ClientID<span class=\"tsd-signature-symbol\">(</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L242\">index.ts:242</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"getinfo\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>get<wbr>Info</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">get<wbr>Info<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L122\">index.ts:122</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns info about a given track.</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>URL of the Soundcloud track</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t\t<p>Info about the track</p>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"getlikes\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>get<wbr>Likes</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">get<wbr>Likes<span class=\"tsd-signature-symbol\">(</span>options<span class=\"tsd-signature-symbol\">: </span><a href=\"../interfaces/likes.getlikesoptions.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">GetLikesOptions</a><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">PaginatedQuery</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/likes.like.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">Like</a><span class=\"tsd-signature-symbol\">&gt;</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L176\">index.ts:176</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns track information for a user&#39;s likes</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>options: <a href=\"../interfaces/likes.getlikesoptions.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">GetLikesOptions</a></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>Can either be the profile URL of the user, or their ID</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">PaginatedQuery</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/likes.like.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">Like</a><span class=\"tsd-signature-symbol\">&gt;</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t<li>An array of tracks</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"getsetinfo\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>get<wbr>Set<wbr>Info</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">get<wbr>Set<wbr>Info<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.setinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SetInfo</a><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L140\">index.ts:140</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns info about the given set</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>URL of the Soundcloud set</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.setinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SetInfo</a><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t\t<p>Info about the set</p>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"gettrackinfobyid\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>get<wbr>Track<wbr>Info<wbr>ByID</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID<span class=\"tsd-signature-symbol\">(</span>ids<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">number</span><span class=\"tsd-signature-symbol\">[]</span>, playlistID<span class=\"tsd-signature-symbol\">?: </span><span class=\"tsd-signature-type\">number</span>, playlistSecretToken<span class=\"tsd-signature-symbol\">?: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L131\">index.ts:131</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns info about the given track(s) specified by ID.</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>ids: <span class=\"tsd-signature-type\">number</span><span class=\"tsd-signature-symbol\">[]</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The ID(s) of the tracks</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5><span class=\"tsd-flag ts-flagOptional\">Optional</span> playlistID: <span class=\"tsd-signature-type\">number</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5><span class=\"tsd-flag ts-flagOptional\">Optional</span> playlistSecretToken: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t\t<p>Info about the track</p>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"getuser\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>get<wbr>User</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">get<wbr>User<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.user.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">User</a><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L198\">index.ts:198</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns information about a user</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The profile URL of the user</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.user.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">User</a><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"isfirebaseurl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>is<wbr>FirebaseURL</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">is<wbr>FirebaseURL<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">boolean</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L238\">index.ts:238</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns true if the given URL is a Firebase URL (of the form <a href=\"https://soundcloud.app.goo.gl/XXXXXXXX\">https://soundcloud.app.goo.gl/XXXXXXXX</a>)</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The URL to check</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">boolean</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"ispersonalizedtrackurl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>is<wbr>Personalized<wbr>TrackURL</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">is<wbr>Personalized<wbr>TrackURL<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">boolean</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L230\">index.ts:230</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns true if the given URL is a personalized track URL. (of the form <a href=\"https://soundcloud.com/discover/sets/personalized-tracks::user-sdlkfjsldfljs:847104873\">https://soundcloud.com/discover/sets/personalized-tracks::user-sdlkfjsldfljs:847104873</a>)</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The URL to check</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">boolean</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"isplaylisturl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>is<wbr>PlaylistURL</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">is<wbr>PlaylistURL<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">boolean</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L222\">index.ts:222</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns whether or not the given URL is a valid playlist SoundCloud URL</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The URL to check</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">boolean</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"isvalidurl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>is<wbr>Valid<wbr>Url</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">is<wbr>Valid<wbr>Url<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">boolean</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L214\">index.ts:214</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Returns whether or not the given URL is a valid Soundcloud URL</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>URL of the Soundcloud track</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">boolean</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"prepareurl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>prepareURL</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">prepareURL<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L319\">index.ts:319</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Prepares the given URL by stripping its mobile prefix (if this.stripMobilePrefix is true)\n\t\t\t\t\t\t\t\t\tand converting it to a regular URL (if this.convertFireBaseLinks is true.)</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"related\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>related</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">related<span class=\"tsd-signature-symbol\">(</span>id<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">number</span>, limit<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">number</span>, offset<span class=\"tsd-signature-symbol\">?: </span><span class=\"tsd-signature-type\">number</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/search.relatedresponse.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">RelatedResponse</a><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">&gt;</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L159\">index.ts:159</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Finds related tracks to the given track specified by ID</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>id: <span class=\"tsd-signature-type\">number</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The ID of the track</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>limit: <span class=\"tsd-signature-type\">number</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The number of results to return</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>offset: <span class=\"tsd-signature-type\">number</span><span class=\"tsd-signature-symbol\"> = 0</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>Used for pagination, set to 0 if you will not use this feature.</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/search.relatedresponse.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">RelatedResponse</a><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">&gt;</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"search\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>search</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">search<span class=\"tsd-signature-symbol\">(</span>options<span class=\"tsd-signature-symbol\">: </span><a href=\"../interfaces/search.searchoptions.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SearchOptions</a><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../modules/search.html#searchresponseall\" class=\"tsd-signature-type\" data-tsd-kind=\"Type alias\">SearchResponseAll</a><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L149\">index.ts:149</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Searches for tracks/playlists for the given query</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>options: <a href=\"../interfaces/search.searchoptions.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SearchOptions</a></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>The search option</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../modules/search.html#searchresponseall\" class=\"tsd-signature-type\" data-tsd-kind=\"Type alias\">SearchResponseAll</a><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t\t<p>SearchResponse</p>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t<a name=\"setaxiosinstance\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>set<wbr>Axios<wbr>Instance</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">set<wbr>Axios<wbr>Instance<span class=\"tsd-signature-symbol\">(</span>instance<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">AxiosInstance</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">void</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L206\">index.ts:206</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t\t\t\t<p>Sets the instance of Axios to use to make requests to SoundCloud API</p>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>instance: <span class=\"tsd-signature-type\">AxiosInstance</span></h5>\n\t\t\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t\t\t<p>An instance of Axios</p>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">void</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-class tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"index.scdl.html\" class=\"tsd-kind-icon\">SCDL</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-constructor tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#constructor\" class=\"tsd-kind-icon\">constructor</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#formats\" class=\"tsd-kind-icon\">FORMATS</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#streaming_protocols\" class=\"tsd-kind-icon\">STREAMING_<wbr>PROTOCOLS</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-class tsd-is-private\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#_clientid\" class=\"tsd-kind-icon\">_clientID</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-class tsd-is-private\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#_filepath\" class=\"tsd-kind-icon\">_file<wbr>Path</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#axios\" class=\"tsd-kind-icon\">axios</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#convertfirebaselinks\" class=\"tsd-kind-icon\">convert<wbr>Firebase<wbr>Links</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#saveclientid\" class=\"tsd-kind-icon\">save<wbr>ClientID</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#stripmobileprefix\" class=\"tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#download\" class=\"tsd-kind-icon\">download</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#downloadformat\" class=\"tsd-kind-icon\">download<wbr>Format</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#downloadplaylist\" class=\"tsd-kind-icon\">download<wbr>Playlist</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#filtermedia\" class=\"tsd-kind-icon\">filter<wbr>Media</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#getclientid\" class=\"tsd-kind-icon\">get<wbr>ClientID</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#getinfo\" class=\"tsd-kind-icon\">get<wbr>Info</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#getlikes\" class=\"tsd-kind-icon\">get<wbr>Likes</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#getsetinfo\" class=\"tsd-kind-icon\">get<wbr>Set<wbr>Info</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#gettrackinfobyid\" class=\"tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#getuser\" class=\"tsd-kind-icon\">get<wbr>User</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#isfirebaseurl\" class=\"tsd-kind-icon\">is<wbr>FirebaseURL</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#ispersonalizedtrackurl\" class=\"tsd-kind-icon\">is<wbr>Personalized<wbr>TrackURL</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#isplaylisturl\" class=\"tsd-kind-icon\">is<wbr>PlaylistURL</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#isvalidurl\" class=\"tsd-kind-icon\">is<wbr>Valid<wbr>Url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#prepareurl\" class=\"tsd-kind-icon\">prepareURL</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#related\" class=\"tsd-kind-icon\">related</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#search\" class=\"tsd-kind-icon\">search</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-method tsd-parent-kind-class\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdl.html#setaxiosinstance\" class=\"tsd-kind-icon\">set<wbr>Axios<wbr>Instance</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/index.scdloptions.html\" class=\"tsd-kind-icon\">SCDLOptions</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-variable tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html#default\" class=\"tsd-kind-icon\">default</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html#create\" class=\"tsd-kind-icon\">create</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t\t<li class=\"tsd-kind-constructor tsd-parent-kind-class\"><span class=\"tsd-kind-icon\">Constructor</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t\t<li class=\"tsd-kind-method tsd-parent-kind-class\"><span class=\"tsd-kind-icon\">Method</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-class tsd-is-private\"><span class=\"tsd-kind-icon\">Private property</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/enums/formats.default.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>default | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"formats.default.html\">default</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Enumeration default</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-comment\">\n\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t<p>Audio formats a track can be encoded in.</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Enumeration members</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-enum-member tsd-parent-kind-enum\"><a href=\"formats.default.html#mp3\" class=\"tsd-kind-icon\">MP3</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-enum-member tsd-parent-kind-enum\"><a href=\"formats.default.html#opus\" class=\"tsd-kind-icon\">OPUS</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Enumeration members</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum\">\n\t\t\t\t\t<a name=\"mp3\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>MP3</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">MP3<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-symbol\"> = &quot;audio/mpeg&quot;</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/formats.ts#L5\">formats.ts:5</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum\">\n\t\t\t\t\t<a name=\"opus\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>OPUS</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">OPUS<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-symbol\"> = &quot;audio/ogg; codecs&#x3D;\\&quot;opus\\&quot;&quot;</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/formats.ts#L6\">formats.ts:6</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-enum tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.default.html\" class=\"tsd-kind-icon\">default</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-enum-member tsd-parent-kind-enum\">\n\t\t\t\t\t\t\t\t<a href=\"formats.default.html#mp3\" class=\"tsd-kind-icon\">MP3</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-enum-member tsd-parent-kind-enum\">\n\t\t\t\t\t\t\t\t<a href=\"formats.default.html#opus\" class=\"tsd-kind-icon\">OPUS</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/enums/protocols.default.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>default | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"protocols.default.html\">default</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Enumeration default</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-comment\">\n\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t<p>Soundcloud streams tracks using these protocols.</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Enumeration members</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-enum-member tsd-parent-kind-enum\"><a href=\"protocols.default.html#hls\" class=\"tsd-kind-icon\">HLS</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-enum-member tsd-parent-kind-enum\"><a href=\"protocols.default.html#progressive\" class=\"tsd-kind-icon\">PROGRESSIVE</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Enumeration members</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum\">\n\t\t\t\t\t<a name=\"hls\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>HLS</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">HLS<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-symbol\"> = &quot;hls&quot;</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/protocols.ts#L5\">protocols.ts:5</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum\">\n\t\t\t\t\t<a name=\"progressive\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>PROGRESSIVE</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">PROGRESSIVE<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-symbol\"> = &quot;progressive&quot;</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/protocols.ts#L6\">protocols.ts:6</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-enum tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.default.html\" class=\"tsd-kind-icon\">default</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-enum-member tsd-parent-kind-enum\">\n\t\t\t\t\t\t\t\t<a href=\"protocols.default.html#hls\" class=\"tsd-kind-icon\">HLS</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-enum-member tsd-parent-kind-enum\">\n\t\t\t\t\t\t\t\t<a href=\"protocols.default.html#progressive\" class=\"tsd-kind-icon\">PROGRESSIVE</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/index.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"assets/css/main.css\">\n\t<script async src=\"assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"assets/js/search.json\" data-base=\".\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<h1>soundcloud-downloader</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<div class=\"tsd-panel tsd-typography\">\n\t\t\t\t<p><img src=\"https://socialify.git.ci/zackradisic/node-soundcloud-downloader/image?font=Raleway&language=1&owner=1&stargazers=1&theme=Dark\" alt=\"node-soundcloud-downloader\"></p>\n\t\t\t\t<p><a href=\"https://github.com/zackradisic\"><img src=\"https://img.shields.io/badge/Author-Zack%20Radisic-green\" alt=\"Zack Radisic\"></a>\n\t\t\t\t\t<a href=\"https://www.npmjs.com/package/soundcloud-downloader\"><img src=\"https://img.shields.io/npm/dt/soundcloud-downloader\" alt=\"downloads\"></a>\n\t\t\t\t<img src=\"https://github.com/zackradisic/node-soundcloud-downloader/workflows/Node.js%20CI/badge.svg\" alt=\"Node.js CI\"></p>\n\t\t\t\t<p>Download Soundcloud tracks with Node.js</p>\n\t\t\t\t<pre><code><span style=\"color: #001080\">npm</span><span style=\"color: #000000\"> </span><span style=\"color: #001080\">install</span><span style=\"color: #000000\"> </span><span style=\"color: #001080\">soundcloud</span><span style=\"color: #000000\">-</span><span style=\"color: #001080\">downloader</span>\n</code></pre>\n\t\t\t\t<p>I couldn&#39;t find any packages that worked with a Discord bot I was working on so I created my own.</p>\n\t\t\t\t<a href=\"#features\" id=\"features\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h4>Features</h4>\n\t\t\t\t</a>\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Extremely fast (interacts directly with the Soundcloud API)</li>\n\t\t\t\t\t<li>Download/manipulate audio from Soundcloud (it is returned as a <a href=\"https://nodejs.org/api/stream.html\">stream</a>)</li>\n\t\t\t\t\t<li>Get information about <a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#getinfo\">tracks</a> and <a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#getsetinfo\">playlists</a></li>\n\t\t\t\t\t<li><a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#filtermedia\">Filter</a> and <a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#downloadformat\">download</a> specific formats</li>\n\t\t\t\t\t<li><a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#search\">Search</a> and find <a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#related\">related</a> tracks/playlists/albums/users</li>\n\t\t\t\t</ul>\n\t\t\t\t<a href=\"#table-of-contents\" id=\"table-of-contents\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h4>Table of Contents</h4>\n\t\t\t\t</a>\n\t\t\t\t<ul>\n\t\t\t\t\t<li><a href=\"#api\">API</a></li>\n\t\t\t\t\t<li><a href=\"#examples\">Examples</a></li>\n\t\t\t\t\t<li><a href=\"#client-id\">Obtaining a Client ID</a></li>\n\t\t\t\t\t<li><a href=\"#to-do\">To do</a></li>\n\t\t\t\t</ul>\n\t\t\t\t<a href=\"#api--documentation\" id=\"api--documentation\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h2>API / <a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html\">Documentation</a></h2>\n\t\t\t\t</a>\n\t\t\t\t<p>Here are the two most commonly used functions:</p>\n\t\t\t\t<a href=\"#scdldownloadurl-clientid\" id=\"scdldownloadurl-clientid\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h3><a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#download\">scdl.download(url, clientID?)</a></h3>\n\t\t\t\t</a>\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Gets the audio from the given URL, returns a <a href=\"https://nodejs.org/api/stream.html#stream_class_stream_readable\">ReadableStream</a>.</li>\n\t\t\t\t</ul>\n\t\t\t\t<a href=\"#scdlgetinfourl-clientid\" id=\"scdlgetinfourl-clientid\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h3><a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html#getinfo\">scdl.getInfo(url, clientID?)</a></h3>\n\t\t\t\t</a>\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Returns a JSON object containing the track&#39;s information, as well as media links.</li>\n\t\t\t\t</ul>\n\t\t\t\t<p>Read the <a href=\"https://zackradisic.github.io/node-soundcloud-downloader/classes/_index_.scdl.html\">docs</a> for more.</p>\n\t\t\t\t<a href=\"#examples\" id=\"examples\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h2>Examples</h2>\n\t\t\t\t</a>\n\t\t\t\t<p>The easiest way to get Soundcloud audio is with the <code>scdl.download(url: string)</code> function, which returns a Promise containing a ReadableStream.</p>\n\t\t\t\t<pre><code class=\"language-javascript\"><span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">scdl</span><span style=\"color: #000000\"> = </span><span style=\"color: #795E26\">require</span><span style=\"color: #000000\">(</span><span style=\"color: #A31515\">&#039;soundcloud-downloader&#039;</span><span style=\"color: #000000\">).</span><span style=\"color: #001080\">default</span>\n<span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">fs</span><span style=\"color: #000000\"> = </span><span style=\"color: #795E26\">require</span><span style=\"color: #000000\">(</span><span style=\"color: #A31515\">&#039;fs&#039;</span><span style=\"color: #000000\">)</span>\n\n<span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">SOUNDCLOUD_URL</span><span style=\"color: #000000\"> = </span><span style=\"color: #A31515\">&#039;https://soundcloud.com/askdjfhaklshf&#039;</span>\n<span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">CLIENT_ID</span><span style=\"color: #000000\"> = </span><span style=\"color: #A31515\">&#039;asdhkalshdkhsf&#039;</span>\n\n<span style=\"color: #001080\">scdl</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">download</span><span style=\"color: #000000\">(</span><span style=\"color: #0070C1\">SOUNDCLOUD_URL</span><span style=\"color: #000000\">).</span><span style=\"color: #795E26\">then</span><span style=\"color: #000000\">(</span><span style=\"color: #001080\">stream</span><span style=\"color: #000000\"> </span><span style=\"color: #0000FF\">=&gt;</span><span style=\"color: #000000\"> </span><span style=\"color: #001080\">stream</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">pipe</span><span style=\"color: #000000\">(</span><span style=\"color: #001080\">fs</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">createWriteStream</span><span style=\"color: #000000\">(</span><span style=\"color: #A31515\">&#039;audio.mp3&#039;</span><span style=\"color: #000000\">)))</span>\n</code></pre>\n\t\t\t\t<p>You can do anything you like with the stream that is returned, an example with <a href=\"https://github.com/discordjs/discord.js/\">Discord.js</a>:</p>\n\t\t\t\t<pre><code class=\"language-javascript\"><span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">client</span><span style=\"color: #000000\"> = </span><span style=\"color: #0000FF\">new</span><span style=\"color: #000000\"> </span><span style=\"color: #001080\">Discord</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">Client</span><span style=\"color: #000000\">()</span>\n<span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">url</span><span style=\"color: #000000\"> = </span><span style=\"color: #A31515\">&#039;https://soundcloud.com/taliya-jenkins/double-cheese-burger-hold-the&#039;</span>\n<span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">clientID</span><span style=\"color: #000000\"> = </span><span style=\"color: #A31515\">&#039;asdlkajasd&#039;</span>\n<span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">channelID</span><span style=\"color: #000000\"> = </span><span style=\"color: #A31515\">&#039;123456789&#039;</span>\n<span style=\"color: #001080\">client</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">on</span><span style=\"color: #000000\">(</span><span style=\"color: #A31515\">&#039;ready&#039;</span><span style=\"color: #000000\">, () </span><span style=\"color: #0000FF\">=&gt;</span><span style=\"color: #000000\"> {</span>\n<span style=\"color: #000000\">  </span><span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">channel</span><span style=\"color: #000000\"> = </span><span style=\"color: #001080\">client</span><span style=\"color: #000000\">.</span><span style=\"color: #001080\">channels</span><span style=\"color: #000000\">.</span><span style=\"color: #001080\">cache</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">get</span><span style=\"color: #000000\">(</span><span style=\"color: #001080\">channelID</span><span style=\"color: #000000\">)</span>\n<span style=\"color: #000000\">  </span><span style=\"color: #001080\">channel</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">join</span><span style=\"color: #000000\">().</span><span style=\"color: #795E26\">then</span><span style=\"color: #000000\">(</span><span style=\"color: #001080\">connection</span><span style=\"color: #000000\"> </span><span style=\"color: #0000FF\">=&gt;</span><span style=\"color: #000000\"> {</span>\n<span style=\"color: #000000\">    </span><span style=\"color: #001080\">scdl</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">download</span><span style=\"color: #000000\">(</span><span style=\"color: #001080\">url</span><span style=\"color: #000000\">, </span><span style=\"color: #001080\">clientID</span><span style=\"color: #000000\">).</span><span style=\"color: #795E26\">then</span><span style=\"color: #000000\">(</span><span style=\"color: #001080\">stream</span><span style=\"color: #000000\"> </span><span style=\"color: #0000FF\">=&gt;</span><span style=\"color: #000000\"> {</span>\n<span style=\"color: #000000\">      </span><span style=\"color: #001080\">connection</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">play</span><span style=\"color: #000000\">(</span><span style=\"color: #001080\">stream</span><span style=\"color: #000000\">)</span>\n<span style=\"color: #000000\">    })</span>\n<span style=\"color: #000000\">  })</span>\n<span style=\"color: #000000\">})</span>\n</code></pre>\n\t\t\t\t<p>You can also create a custom instance of the SCDL class with settings configured to your liking:</p>\n\t\t\t\t<pre><code class=\"language-javascript\"><span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">scdlCreate</span><span style=\"color: #000000\"> = </span><span style=\"color: #795E26\">require</span><span style=\"color: #000000\">(</span><span style=\"color: #A31515\">&#039;../&#039;</span><span style=\"color: #000000\">).</span><span style=\"color: #001080\">create</span>\n<span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">axios</span><span style=\"color: #000000\"> = </span><span style=\"color: #795E26\">require</span><span style=\"color: #000000\">(</span><span style=\"color: #A31515\">&#039;axios&#039;</span><span style=\"color: #000000\">).</span><span style=\"color: #001080\">default</span>\n\n<span style=\"color: #0000FF\">const</span><span style=\"color: #000000\"> </span><span style=\"color: #0070C1\">scdl</span><span style=\"color: #000000\"> = </span><span style=\"color: #795E26\">scdlCreate</span><span style=\"color: #000000\">({</span>\n<span style=\"color: #000000\">  </span><span style=\"color: #001080\">clientID:</span><span style=\"color: #000000\"> </span><span style=\"color: #A31515\">&#039;adasdasd&#039;</span><span style=\"color: #000000\">,</span>\n<span style=\"color: #000000\">  </span><span style=\"color: #001080\">saveClientID:</span><span style=\"color: #000000\"> </span><span style=\"color: #0000FF\">true</span><span style=\"color: #000000\">,</span>\n<span style=\"color: #000000\">  </span><span style=\"color: #001080\">filePath:</span><span style=\"color: #000000\"> </span><span style=\"color: #A31515\">&#039;./client_id.json&#039;</span><span style=\"color: #000000\">,</span>\n<span style=\"color: #000000\">  </span><span style=\"color: #001080\">axiosInstance:</span><span style=\"color: #000000\"> </span><span style=\"color: #001080\">axios</span><span style=\"color: #000000\">.</span><span style=\"color: #795E26\">create</span><span style=\"color: #000000\">()</span>\n<span style=\"color: #000000\">})</span>\n</code></pre>\n\t\t\t\t<p>You can view the code for these examples and find more in the <a href=\"example\">example</a> folder.</p>\n\t\t\t\t<a href=\"#client-id\" id=\"client-id\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h2>Client ID</h2>\n\t\t\t\t</a>\n\t\t\t\t<p>You can obtain a Client ID by visting the Soundcloud website and inspecting network traffic (perhaps with Chrome DevTools or some HTTP proxy software) and looking for any requests to the Soundcloud API. Ex:</p>\n\t\t\t\t<pre><code><span style=\"color: #000000\">https:</span><span style=\"color: #008000\">//api-v2.soundcloud.com/me/play-history/tracks?client_id={CLIENT ID IS HERE}&amp;limit=25&amp;offset=0&amp;linked_partitioning=1&amp;app_version=1590494738&amp;app_locale=en</span>\n</code></pre>\n\t\t\t\t<p>Here is a picture of where you should be able to find it:\n\t\t\t\t<img src=\"img/clientid.png\" alt=\"\"></p>\n\t\t\t\t<a href=\"#to-do\" id=\"to-do\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h2>To-do</h2>\n\t\t\t\t</a>\n\t\t\t\t<p>If I have the time and there is enough demand, I am interested in implementing the following functionalities:</p>\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Audio format selection ✅</li>\n\t\t\t\t\t<li>Ability to use HTTP Live Streaming (HLS) ✅</li>\n\t\t\t\t\t<li>Some more integrations with Discord.js like selecting best format for voice channels</li>\n\t\t\t\t</ul>\n\t\t\t\t<p>If you have any feature requests, suggestions or questions do not hesistate to post them in the issues section</p>\n\t\t\t\t<a href=\"#disclaimer\" id=\"disclaimer\" style=\"color: inherit; text-decoration: none;\">\n\t\t\t\t\t<h2>Disclaimer</h2>\n\t\t\t\t</a>\n\t\t\t\t<p>I do not support piracy and this package is not designed for circumventing the technological measures employed\n\t\t\t\t\tby SoundCloud preventing unauthorized access to copyrighted works. This package is only for downloading\n\t\t\t\taudio you have access to.</p>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/filter_media.filterpredicateobject.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>FilterPredicateObject | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-media</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"filter_media.filterpredicateobject.html\">FilterPredicateObject</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface FilterPredicateObject</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">FilterPredicateObject</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"filter_media.filterpredicateobject.html#format\" class=\"tsd-kind-icon\">format</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"filter_media.filterpredicateobject.html#protocol\" class=\"tsd-kind-icon\">protocol</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"format\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> format</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">format<span class=\"tsd-signature-symbol\">:</span> <a href=\"../enums/formats.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/filter-media.ts#L7\">filter-media.ts:7</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"protocol\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> protocol</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">protocol<span class=\"tsd-signature-symbol\">:</span> <a href=\"../enums/protocols.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/filter-media.ts#L6\">filter-media.ts:6</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.filterpredicateobject.html\" class=\"tsd-kind-icon\">Filter<wbr>Predicate<wbr>Object</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"filter_media.filterpredicateobject.html#format\" class=\"tsd-kind-icon\">format</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"filter_media.filterpredicateobject.html#protocol\" class=\"tsd-kind-icon\">protocol</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/index.scdloptions.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>SCDLOptions | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"index.scdloptions.html\">SCDLOptions</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface SCDLOptions</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">SCDLOptions</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"index.scdloptions.html#axiosinstance\" class=\"tsd-kind-icon\">axios<wbr>Instance</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"index.scdloptions.html#clientid\" class=\"tsd-kind-icon\">clientID</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"index.scdloptions.html#convertfirebaselinks\" class=\"tsd-kind-icon\">convert<wbr>Firebase<wbr>Links</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"index.scdloptions.html#filepath\" class=\"tsd-kind-icon\">file<wbr>Path</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"index.scdloptions.html#saveclientid\" class=\"tsd-kind-icon\">save<wbr>ClientID</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"index.scdloptions.html#stripmobileprefix\" class=\"tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"axiosinstance\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> axios<wbr>Instance</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">axios<wbr>Instance<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">AxiosInstance</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L42\">index.ts:42</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"clientid\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> clientID</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">clientID<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L36\">index.ts:36</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"convertfirebaselinks\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> convert<wbr>Firebase<wbr>Links</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">convert<wbr>Firebase<wbr>Links<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L47\">index.ts:47</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"filepath\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> file<wbr>Path</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">file<wbr>Path<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L40\">index.ts:40</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"saveclientid\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> save<wbr>ClientID</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">save<wbr>ClientID<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L38\">index.ts:38</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"stripmobileprefix\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> strip<wbr>Mobile<wbr>Prefix</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L44\">index.ts:44</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-class tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../classes/index.scdl.html\" class=\"tsd-kind-icon\">SCDL</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"index.scdloptions.html\" class=\"tsd-kind-icon\">SCDLOptions</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdloptions.html#axiosinstance\" class=\"tsd-kind-icon\">axios<wbr>Instance</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdloptions.html#clientid\" class=\"tsd-kind-icon\">clientID</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdloptions.html#convertfirebaselinks\" class=\"tsd-kind-icon\">convert<wbr>Firebase<wbr>Links</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdloptions.html#filepath\" class=\"tsd-kind-icon\">file<wbr>Path</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdloptions.html#saveclientid\" class=\"tsd-kind-icon\">save<wbr>ClientID</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"index.scdloptions.html#stripmobileprefix\" class=\"tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-variable tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html#default\" class=\"tsd-kind-icon\">default</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html#create\" class=\"tsd-kind-icon\">create</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/info.setinfo.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>SetInfo | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"info.setinfo.html\">SetInfo</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface SetInfo</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-comment\">\n\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t<p>Details about a Set</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">SetInfo</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#artwork_url\" class=\"tsd-kind-icon\">artwork_<wbr>url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#created_at\" class=\"tsd-kind-icon\">created_<wbr>at</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#description\" class=\"tsd-kind-icon\">description</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#display_date\" class=\"tsd-kind-icon\">display_<wbr>date</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#duration\" class=\"tsd-kind-icon\">duration</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#embeddable_by\" class=\"tsd-kind-icon\">embeddable_<wbr>by</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#genre\" class=\"tsd-kind-icon\">genre</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#id\" class=\"tsd-kind-icon\">id</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#is_album\" class=\"tsd-kind-icon\">is_<wbr>album</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#kind\" class=\"tsd-kind-icon\">kind</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#label_name\" class=\"tsd-kind-icon\">label_<wbr>name</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#last_modified\" class=\"tsd-kind-icon\">last_<wbr>modified</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#license\" class=\"tsd-kind-icon\">license</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#likes_count\" class=\"tsd-kind-icon\">likes_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#managed_by_feeds\" class=\"tsd-kind-icon\">managed_<wbr>by_<wbr>feeds</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#permalink\" class=\"tsd-kind-icon\">permalink</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#permalink_url\" class=\"tsd-kind-icon\">permalink_<wbr>url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#public\" class=\"tsd-kind-icon\">public</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#published_at\" class=\"tsd-kind-icon\">published_<wbr>at</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#purchase_title\" class=\"tsd-kind-icon\">purchase_<wbr>title</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#purchase_url\" class=\"tsd-kind-icon\">purchase_<wbr>url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#release_date\" class=\"tsd-kind-icon\">release_<wbr>date</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#reposts_count\" class=\"tsd-kind-icon\">reposts_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#secret_token\" class=\"tsd-kind-icon\">secret_<wbr>token</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#set_type\" class=\"tsd-kind-icon\">set_<wbr>type</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#sharing\" class=\"tsd-kind-icon\">sharing</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#tag_list\" class=\"tsd-kind-icon\">tag_<wbr>list</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#track_count\" class=\"tsd-kind-icon\">track_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#tracks\" class=\"tsd-kind-icon\">tracks</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#uri\" class=\"tsd-kind-icon\">uri</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#user\" class=\"tsd-kind-icon\">user</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.setinfo.html#user_id\" class=\"tsd-kind-icon\">user_<wbr>id</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"artwork_url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> artwork_<wbr>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">artwork_<wbr>url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L102\">info.ts:102</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"created_at\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>created_<wbr>at</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">created_<wbr>at<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L97\">info.ts:97</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"description\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> description</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">description<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L81\">info.ts:81</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"display_date\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>display_<wbr>date</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">display_<wbr>date<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L94\">info.ts:94</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"duration\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>duration</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">duration<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L75\">info.ts:75</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"embeddable_by\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>embeddable_<wbr>by</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">embeddable_<wbr>by<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L106\">info.ts:106</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"genre\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>genre</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">genre<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L78\">info.ts:78</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"id\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>id</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">id<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L92\">info.ts:92</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"is_album\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>is_<wbr>album</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">is_<wbr>album<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L103\">info.ts:103</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"kind\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>kind</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">kind<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L99\">info.ts:99</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"label_name\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> label_<wbr>name</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">label_<wbr>name<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L83\">info.ts:83</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"last_modified\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>last_<wbr>modified</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">last_<wbr>modified<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L89\">info.ts:89</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"license\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>license</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">license<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L90\">info.ts:90</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"likes_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>likes_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">likes_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L98\">info.ts:98</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"managed_by_feeds\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>managed_<wbr>by_<wbr>feeds</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">managed_<wbr>by_<wbr>feeds<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L101\">info.ts:101</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"permalink\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>permalink</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">permalink<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L79\">info.ts:79</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"permalink_url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>permalink_<wbr>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">permalink_<wbr>url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L76\">info.ts:76</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"public\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>public</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">public<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L86\">info.ts:86</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"published_at\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>published_<wbr>at</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">published_<wbr>at<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L105\">info.ts:105</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"purchase_title\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> purchase_<wbr>title</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">purchase_<wbr>title<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L100\">info.ts:100</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"purchase_url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> purchase_<wbr>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">purchase_<wbr>url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L80\">info.ts:80</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"release_date\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> release_<wbr>date</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">release_<wbr>date<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L93\">info.ts:93</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"reposts_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>reposts_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">reposts_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L77\">info.ts:77</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"secret_token\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> secret_<wbr>token</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">secret_<wbr>token<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L96\">info.ts:96</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"set_type\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>set_<wbr>type</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">set_<wbr>type<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L85\">info.ts:85</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"sharing\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>sharing</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">sharing<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L95\">info.ts:95</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"tag_list\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>tag_<wbr>list</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">tag_<wbr>list<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L84\">info.ts:84</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"track_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>track_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">track_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L87\">info.ts:87</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"tracks\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>tracks</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">tracks<span class=\"tsd-signature-symbol\">:</span> <a href=\"info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">[]</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L91\">info.ts:91</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"uri\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>uri</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">uri<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L82\">info.ts:82</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"user\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>user</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">user<span class=\"tsd-signature-symbol\">:</span> <a href=\"info.user.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">User</a></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L104\">info.ts:104</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"user_id\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>user_<wbr>id</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">user_<wbr>id<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L88\">info.ts:88</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.setinfo.html\" class=\"tsd-kind-icon\">Set<wbr>Info</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#artwork_url\" class=\"tsd-kind-icon\">artwork_<wbr>url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#created_at\" class=\"tsd-kind-icon\">created_<wbr>at</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#description\" class=\"tsd-kind-icon\">description</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#display_date\" class=\"tsd-kind-icon\">display_<wbr>date</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#duration\" class=\"tsd-kind-icon\">duration</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#embeddable_by\" class=\"tsd-kind-icon\">embeddable_<wbr>by</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#genre\" class=\"tsd-kind-icon\">genre</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#id\" class=\"tsd-kind-icon\">id</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#is_album\" class=\"tsd-kind-icon\">is_<wbr>album</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#kind\" class=\"tsd-kind-icon\">kind</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#label_name\" class=\"tsd-kind-icon\">label_<wbr>name</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#last_modified\" class=\"tsd-kind-icon\">last_<wbr>modified</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#license\" class=\"tsd-kind-icon\">license</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#likes_count\" class=\"tsd-kind-icon\">likes_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#managed_by_feeds\" class=\"tsd-kind-icon\">managed_<wbr>by_<wbr>feeds</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#permalink\" class=\"tsd-kind-icon\">permalink</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#permalink_url\" class=\"tsd-kind-icon\">permalink_<wbr>url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#public\" class=\"tsd-kind-icon\">public</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#published_at\" class=\"tsd-kind-icon\">published_<wbr>at</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#purchase_title\" class=\"tsd-kind-icon\">purchase_<wbr>title</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#purchase_url\" class=\"tsd-kind-icon\">purchase_<wbr>url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#release_date\" class=\"tsd-kind-icon\">release_<wbr>date</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#reposts_count\" class=\"tsd-kind-icon\">reposts_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#secret_token\" class=\"tsd-kind-icon\">secret_<wbr>token</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#set_type\" class=\"tsd-kind-icon\">set_<wbr>type</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#sharing\" class=\"tsd-kind-icon\">sharing</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#tag_list\" class=\"tsd-kind-icon\">tag_<wbr>list</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#track_count\" class=\"tsd-kind-icon\">track_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#tracks\" class=\"tsd-kind-icon\">tracks</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#uri\" class=\"tsd-kind-icon\">uri</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#user\" class=\"tsd-kind-icon\">user</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.setinfo.html#user_id\" class=\"tsd-kind-icon\">user_<wbr>id</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.trackinfo.html\" class=\"tsd-kind-icon\">Track<wbr>Info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.transcoding.html\" class=\"tsd-kind-icon\">Transcoding</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.user.html\" class=\"tsd-kind-icon\">User</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html#gettrackinfobyid\" class=\"tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/info.trackinfo.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>TrackInfo | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"info.trackinfo.html\">TrackInfo</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface TrackInfo</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-comment\">\n\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t<p>Details about the track</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">TrackInfo</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#artwork_url\" class=\"tsd-kind-icon\">artwork_<wbr>url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#comment_count\" class=\"tsd-kind-icon\">comment_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#commentable\" class=\"tsd-kind-icon\">commentable</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#created_at\" class=\"tsd-kind-icon\">created_<wbr>at</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#description\" class=\"tsd-kind-icon\">description</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#display_date\" class=\"tsd-kind-icon\">display_<wbr>date</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#download_count\" class=\"tsd-kind-icon\">download_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#downloadable\" class=\"tsd-kind-icon\">downloadable</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#duration\" class=\"tsd-kind-icon\">duration</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#full_duration\" class=\"tsd-kind-icon\">full_<wbr>duration</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#genre\" class=\"tsd-kind-icon\">genre</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#has_downloads_left\" class=\"tsd-kind-icon\">has_<wbr>downloads_<wbr>left</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#id\" class=\"tsd-kind-icon\">id</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#kind\" class=\"tsd-kind-icon\">kind</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#label_name\" class=\"tsd-kind-icon\">label_<wbr>name</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#last_modified\" class=\"tsd-kind-icon\">last_<wbr>modified</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#likes_count\" class=\"tsd-kind-icon\">likes_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#media\" class=\"tsd-kind-icon\">media</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#monetization_model\" class=\"tsd-kind-icon\">monetization_<wbr>model</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#permalink\" class=\"tsd-kind-icon\">permalink</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#permalink_url\" class=\"tsd-kind-icon\">permalink_<wbr>url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#playback_count\" class=\"tsd-kind-icon\">playback_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#policy\" class=\"tsd-kind-icon\">policy</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#public\" class=\"tsd-kind-icon\">public</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#publisher_metadata\" class=\"tsd-kind-icon\">publisher_<wbr>metadata</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#reposts_count\" class=\"tsd-kind-icon\">reposts_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#state\" class=\"tsd-kind-icon\">state</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#streamable\" class=\"tsd-kind-icon\">streamable</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#tag_list\" class=\"tsd-kind-icon\">tag_<wbr>list</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#title\" class=\"tsd-kind-icon\">title</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#uri\" class=\"tsd-kind-icon\">uri</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#user\" class=\"tsd-kind-icon\">user</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#user_id\" class=\"tsd-kind-icon\">user_<wbr>id</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.trackinfo.html#waveform_url\" class=\"tsd-kind-icon\">waveform_<wbr>url</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"artwork_url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> artwork_<wbr>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">artwork_<wbr>url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L49\">info.ts:49</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"comment_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> comment_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">comment_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L39\">info.ts:39</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"commentable\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> commentable</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">commentable<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L58\">info.ts:58</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"created_at\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> created_<wbr>at</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">created_<wbr>at<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L42\">info.ts:42</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"description\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> description</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">description<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L43\">info.ts:43</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"display_date\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> display_<wbr>date</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">display_<wbr>date<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L62\">info.ts:62</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"download_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> download_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">download_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L60\">info.ts:60</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"downloadable\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> downloadable</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">downloadable<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">false</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L41\">info.ts:41</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"duration\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> duration</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">duration<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L47\">info.ts:47</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"full_duration\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> full_<wbr>duration</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">full_<wbr>duration<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L40\">info.ts:40</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"genre\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> genre</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">genre<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L53\">info.ts:53</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"has_downloads_left\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> has_<wbr>downloads_<wbr>left</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">has_<wbr>downloads_<wbr>left<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L48\">info.ts:48</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"id\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>id</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">id<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L37\">info.ts:37</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"kind\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>kind</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">kind<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L35\">info.ts:35</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"label_name\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> label_<wbr>name</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">label_<wbr>name<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L55\">info.ts:55</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"last_modified\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> last_<wbr>modified</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">last_<wbr>modified<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L57\">info.ts:57</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"likes_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> likes_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">likes_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L61\">info.ts:61</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"media\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> media</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">media<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-symbol\">{ </span>transcodings<span class=\"tsd-signature-symbol\">: </span><a href=\"info.transcoding.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">Transcoding</a><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\"> }</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L44\">info.ts:44</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t\t<div class=\"tsd-type-declaration\">\n\t\t\t\t\t\t<h4>Type declaration</h4>\n\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t<li class=\"tsd-parameter\">\n\t\t\t\t\t\t\t\t<h5>transcodings<span class=\"tsd-signature-symbol\">: </span><a href=\"info.transcoding.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">Transcoding</a><span class=\"tsd-signature-symbol\">[]</span></h5>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"monetization_model\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>monetization_<wbr>model</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">monetization_<wbr>model<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L36\">info.ts:36</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"permalink\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> permalink</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">permalink<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L65\">info.ts:65</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"permalink_url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> permalink_<wbr>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">permalink_<wbr>url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L66\">info.ts:66</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"playback_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> playback_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">playback_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L68\">info.ts:68</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"policy\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>policy</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">policy<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L38\">info.ts:38</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"public\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> public</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">public<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L50\">info.ts:50</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"publisher_metadata\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> publisher_<wbr>metadata</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">publisher_<wbr>metadata<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">any</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L46\">info.ts:46</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"reposts_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> reposts_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">reposts_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L54\">info.ts:54</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"state\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> state</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">state<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L56\">info.ts:56</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"streamable\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> streamable</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">streamable<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">true</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L51\">info.ts:51</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"tag_list\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> tag_<wbr>list</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">tag_<wbr>list<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L52\">info.ts:52</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"title\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> title</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">title<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L45\">info.ts:45</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"uri\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> uri</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">uri<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L59\">info.ts:59</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"user\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> user</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">user<span class=\"tsd-signature-symbol\">:</span> <a href=\"info.user.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">User</a></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L67\">info.ts:67</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"user_id\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> user_<wbr>id</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">user_<wbr>id<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L63\">info.ts:63</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"waveform_url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> waveform_<wbr>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">waveform_<wbr>url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L64\">info.ts:64</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.setinfo.html\" class=\"tsd-kind-icon\">Set<wbr>Info</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.trackinfo.html\" class=\"tsd-kind-icon\">Track<wbr>Info</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#artwork_url\" class=\"tsd-kind-icon\">artwork_<wbr>url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#comment_count\" class=\"tsd-kind-icon\">comment_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#commentable\" class=\"tsd-kind-icon\">commentable</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#created_at\" class=\"tsd-kind-icon\">created_<wbr>at</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#description\" class=\"tsd-kind-icon\">description</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#display_date\" class=\"tsd-kind-icon\">display_<wbr>date</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#download_count\" class=\"tsd-kind-icon\">download_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#downloadable\" class=\"tsd-kind-icon\">downloadable</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#duration\" class=\"tsd-kind-icon\">duration</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#full_duration\" class=\"tsd-kind-icon\">full_<wbr>duration</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#genre\" class=\"tsd-kind-icon\">genre</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#has_downloads_left\" class=\"tsd-kind-icon\">has_<wbr>downloads_<wbr>left</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#id\" class=\"tsd-kind-icon\">id</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#kind\" class=\"tsd-kind-icon\">kind</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#label_name\" class=\"tsd-kind-icon\">label_<wbr>name</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#last_modified\" class=\"tsd-kind-icon\">last_<wbr>modified</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#likes_count\" class=\"tsd-kind-icon\">likes_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#media\" class=\"tsd-kind-icon\">media</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#monetization_model\" class=\"tsd-kind-icon\">monetization_<wbr>model</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#permalink\" class=\"tsd-kind-icon\">permalink</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#permalink_url\" class=\"tsd-kind-icon\">permalink_<wbr>url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#playback_count\" class=\"tsd-kind-icon\">playback_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#policy\" class=\"tsd-kind-icon\">policy</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#public\" class=\"tsd-kind-icon\">public</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#publisher_metadata\" class=\"tsd-kind-icon\">publisher_<wbr>metadata</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#reposts_count\" class=\"tsd-kind-icon\">reposts_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#state\" class=\"tsd-kind-icon\">state</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#streamable\" class=\"tsd-kind-icon\">streamable</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#tag_list\" class=\"tsd-kind-icon\">tag_<wbr>list</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#title\" class=\"tsd-kind-icon\">title</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#uri\" class=\"tsd-kind-icon\">uri</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#user\" class=\"tsd-kind-icon\">user</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#user_id\" class=\"tsd-kind-icon\">user_<wbr>id</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.trackinfo.html#waveform_url\" class=\"tsd-kind-icon\">waveform_<wbr>url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.transcoding.html\" class=\"tsd-kind-icon\">Transcoding</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.user.html\" class=\"tsd-kind-icon\">User</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html#gettrackinfobyid\" class=\"tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/info.transcoding.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>Transcoding | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"info.transcoding.html\">Transcoding</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface Transcoding</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-comment\">\n\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t<p>Represents an audio link to a Soundcloud Track</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">Transcoding</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.transcoding.html#format\" class=\"tsd-kind-icon\">format</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.transcoding.html#preset\" class=\"tsd-kind-icon\">preset</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.transcoding.html#snipped\" class=\"tsd-kind-icon\">snipped</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.transcoding.html#url\" class=\"tsd-kind-icon\">url</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"format\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>format</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">format<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-symbol\">{ </span>mime_type<span class=\"tsd-signature-symbol\">: </span><a href=\"../enums/formats.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a><span class=\"tsd-signature-symbol\">; </span>protocol<span class=\"tsd-signature-symbol\">: </span><a href=\"../enums/protocols.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a><span class=\"tsd-signature-symbol\"> }</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L116\">info.ts:116</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t\t<div class=\"tsd-type-declaration\">\n\t\t\t\t\t\t<h4>Type declaration</h4>\n\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t<li class=\"tsd-parameter\">\n\t\t\t\t\t\t\t\t<h5>mime_<wbr>type<span class=\"tsd-signature-symbol\">: </span><a href=\"../enums/formats.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a></h5>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\"tsd-parameter\">\n\t\t\t\t\t\t\t\t<h5>protocol<span class=\"tsd-signature-symbol\">: </span><a href=\"../enums/protocols.default.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Enumeration\">default</a></h5>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"preset\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>preset</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">preset<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L114\">info.ts:114</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"snipped\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>snipped</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">snipped<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">boolean</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L115\">info.ts:115</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L113\">info.ts:113</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.setinfo.html\" class=\"tsd-kind-icon\">Set<wbr>Info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.trackinfo.html\" class=\"tsd-kind-icon\">Track<wbr>Info</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.transcoding.html\" class=\"tsd-kind-icon\">Transcoding</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.transcoding.html#format\" class=\"tsd-kind-icon\">format</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.transcoding.html#preset\" class=\"tsd-kind-icon\">preset</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.transcoding.html#snipped\" class=\"tsd-kind-icon\">snipped</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.transcoding.html#url\" class=\"tsd-kind-icon\">url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.user.html\" class=\"tsd-kind-icon\">User</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html#gettrackinfobyid\" class=\"tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/info.user.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>User | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"info.user.html\">User</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface User</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-comment\">\n\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t<div class=\"lead\">\n\t\t\t\t\t\t<p>A Soundcloud user</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">User</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#avatar_url\" class=\"tsd-kind-icon\">avatar_<wbr>url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#city\" class=\"tsd-kind-icon\">city</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#comments_count\" class=\"tsd-kind-icon\">comments_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#country_code\" class=\"tsd-kind-icon\">country_<wbr>code</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#created_at\" class=\"tsd-kind-icon\">created_<wbr>at</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#description\" class=\"tsd-kind-icon\">description</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#first_name\" class=\"tsd-kind-icon\">first_<wbr>name</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#followers_count\" class=\"tsd-kind-icon\">followers_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#followings_count\" class=\"tsd-kind-icon\">followings_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#full_name\" class=\"tsd-kind-icon\">full_<wbr>name</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#groups_count\" class=\"tsd-kind-icon\">groups_<wbr>count</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#id\" class=\"tsd-kind-icon\">id</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#kind\" class=\"tsd-kind-icon\">kind</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#last_name\" class=\"tsd-kind-icon\">last_<wbr>name</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#permalink_url\" class=\"tsd-kind-icon\">permalink_<wbr>url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#uri\" class=\"tsd-kind-icon\">uri</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"info.user.html#username\" class=\"tsd-kind-icon\">username</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"avatar_url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>avatar_<wbr>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">avatar_<wbr>url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L13\">info.ts:13</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"city\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>city</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">city<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L14\">info.ts:14</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"comments_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>comments_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">comments_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L15\">info.ts:15</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"country_code\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>country_<wbr>code</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">country_<wbr>code<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L16\">info.ts:16</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"created_at\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>created_<wbr>at</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">created_<wbr>at<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L17\">info.ts:17</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"description\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>description</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">description<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L18\">info.ts:18</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"first_name\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>first_<wbr>name</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">first_<wbr>name<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L21\">info.ts:21</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"followers_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>followers_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">followers_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L19\">info.ts:19</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"followings_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>followings_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">followings_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L20\">info.ts:20</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"full_name\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>full_<wbr>name</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">full_<wbr>name<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L22\">info.ts:22</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"groups_count\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>groups_<wbr>count</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">groups_<wbr>count<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L23\">info.ts:23</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"id\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>id</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">id<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L24\">info.ts:24</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"kind\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>kind</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">kind<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L12\">info.ts:12</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"last_name\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>last_<wbr>name</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">last_<wbr>name<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L25\">info.ts:25</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"permalink_url\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>permalink_<wbr>url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">permalink_<wbr>url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L26\">info.ts:26</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"uri\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>uri</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">uri<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L27\">info.ts:27</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"username\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>username</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">username<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L28\">info.ts:28</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.setinfo.html\" class=\"tsd-kind-icon\">Set<wbr>Info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.trackinfo.html\" class=\"tsd-kind-icon\">Track<wbr>Info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.transcoding.html\" class=\"tsd-kind-icon\">Transcoding</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.user.html\" class=\"tsd-kind-icon\">User</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#avatar_url\" class=\"tsd-kind-icon\">avatar_<wbr>url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#city\" class=\"tsd-kind-icon\">city</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#comments_count\" class=\"tsd-kind-icon\">comments_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#country_code\" class=\"tsd-kind-icon\">country_<wbr>code</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#created_at\" class=\"tsd-kind-icon\">created_<wbr>at</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#description\" class=\"tsd-kind-icon\">description</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#first_name\" class=\"tsd-kind-icon\">first_<wbr>name</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#followers_count\" class=\"tsd-kind-icon\">followers_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#followings_count\" class=\"tsd-kind-icon\">followings_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#full_name\" class=\"tsd-kind-icon\">full_<wbr>name</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#groups_count\" class=\"tsd-kind-icon\">groups_<wbr>count</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#id\" class=\"tsd-kind-icon\">id</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#kind\" class=\"tsd-kind-icon\">kind</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#last_name\" class=\"tsd-kind-icon\">last_<wbr>name</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#permalink_url\" class=\"tsd-kind-icon\">permalink_<wbr>url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#uri\" class=\"tsd-kind-icon\">uri</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"info.user.html#username\" class=\"tsd-kind-icon\">username</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html#gettrackinfobyid\" class=\"tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/likes.getlikesoptions.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>GetLikesOptions | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"likes.getlikesoptions.html\">GetLikesOptions</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface GetLikesOptions</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">GetLikesOptions</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"likes.getlikesoptions.html#id\" class=\"tsd-kind-icon\">id</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"likes.getlikesoptions.html#limit\" class=\"tsd-kind-icon\">limit</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"likes.getlikesoptions.html#nexthref\" class=\"tsd-kind-icon\">next<wbr>Href</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"likes.getlikesoptions.html#offset\" class=\"tsd-kind-icon\">offset</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"likes.getlikesoptions.html#profileurl\" class=\"tsd-kind-icon\">profile<wbr>Url</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"id\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> id</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">id<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/likes.ts#L16\">likes.ts:16</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"limit\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> limit</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">limit<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/likes.ts#L17\">likes.ts:17</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"nexthref\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> next<wbr>Href</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">next<wbr>Href<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/likes.ts#L19\">likes.ts:19</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"offset\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> offset</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">offset<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/likes.ts#L18\">likes.ts:18</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"profileurl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> profile<wbr>Url</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">profile<wbr>Url<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/likes.ts#L15\">likes.ts:15</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.getlikesoptions.html\" class=\"tsd-kind-icon\">Get<wbr>Likes<wbr>Options</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"likes.getlikesoptions.html#id\" class=\"tsd-kind-icon\">id</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"likes.getlikesoptions.html#limit\" class=\"tsd-kind-icon\">limit</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"likes.getlikesoptions.html#nexthref\" class=\"tsd-kind-icon\">next<wbr>Href</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"likes.getlikesoptions.html#offset\" class=\"tsd-kind-icon\">offset</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"likes.getlikesoptions.html#profileurl\" class=\"tsd-kind-icon\">profile<wbr>Url</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.like.html\" class=\"tsd-kind-icon\">Like</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/likes.like.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>Like | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"likes.like.html\">Like</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface Like</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">Like</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"likes.like.html#created_at\" class=\"tsd-kind-icon\">created_<wbr>at</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"likes.like.html#kind\" class=\"tsd-kind-icon\">kind</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"likes.like.html#track\" class=\"tsd-kind-icon\">track</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"created_at\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>created_<wbr>at</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">created_<wbr>at<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/likes.ts#L9\">likes.ts:9</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"kind\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>kind</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">kind<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/likes.ts#L10\">likes.ts:10</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"track\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>track</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">track<span class=\"tsd-signature-symbol\">:</span> <a href=\"info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/likes.ts#L11\">likes.ts:11</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.getlikesoptions.html\" class=\"tsd-kind-icon\">Get<wbr>Likes<wbr>Options</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.like.html\" class=\"tsd-kind-icon\">Like</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"likes.like.html#created_at\" class=\"tsd-kind-icon\">created_<wbr>at</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"likes.like.html#kind\" class=\"tsd-kind-icon\">kind</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"likes.like.html#track\" class=\"tsd-kind-icon\">track</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/search.relatedresponse.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>RelatedResponse | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"search.relatedresponse.html\">RelatedResponse</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface RelatedResponse&lt;T&gt;</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-type-parameters\">\n\t\t\t\t<h3>Type parameters</h3>\n\t\t\t\t<ul class=\"tsd-type-parameters\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<h4>T</h4>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"tsd-signature-type\">PaginatedQuery</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">T</span><span class=\"tsd-signature-symbol\">&gt;</span>\n\t\t\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t<span class=\"target\">RelatedResponse</span>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.relatedresponse.html#collection\" class=\"tsd-kind-icon\">collection</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.relatedresponse.html#next_href\" class=\"tsd-kind-icon\">next_<wbr>href</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.relatedresponse.html#query_urn\" class=\"tsd-kind-icon\">query_<wbr>urn</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.relatedresponse.html#total_results\" class=\"tsd-kind-icon\">total_<wbr>results</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.relatedresponse.html#variant\" class=\"tsd-kind-icon\">variant</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"collection\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>collection</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">collection<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">T</span><span class=\"tsd-signature-symbol\">[]</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/util.ts#L7\">util.ts:7</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"next_href\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>next_<wbr>href</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">next_<wbr>href<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/util.ts#L9\">util.ts:9</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"query_urn\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>query_<wbr>urn</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">query_<wbr>urn<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/util.ts#L10\">util.ts:10</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"total_results\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> total_<wbr>results</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">total_<wbr>results<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/util.ts#L8\">util.ts:8</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"variant\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>variant</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">variant<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/search.ts#L10\">search.ts:10</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter\">\n\t\t\t\t\t\t<a href=\"search.relatedresponse.html\" class=\"tsd-kind-icon\">Related<wbr>Response</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.relatedresponse.html#collection\" class=\"tsd-kind-icon\">collection</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.relatedresponse.html#next_href\" class=\"tsd-kind-icon\">next_<wbr>href</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.relatedresponse.html#query_urn\" class=\"tsd-kind-icon\">query_<wbr>urn</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.relatedresponse.html#total_results\" class=\"tsd-kind-icon\">total_<wbr>results</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.relatedresponse.html#variant\" class=\"tsd-kind-icon\">variant</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"search.searchoptions.html\" class=\"tsd-kind-icon\">Search<wbr>Options</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-type-alias tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html#searchresponseall\" class=\"tsd-kind-icon\">Search<wbr>Response<wbr>All</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-type-alias tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html#soundcloudresource\" class=\"tsd-kind-icon\">Soundcloud<wbr>Resource</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/interfaces/search.searchoptions.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>SearchOptions | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"search.searchoptions.html\">SearchOptions</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Interface SearchOptions</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel tsd-hierarchy\">\n\t\t\t\t<h3>Hierarchy</h3>\n\t\t\t\t<ul class=\"tsd-hierarchy\">\n\t\t\t\t\t<li>\n\t\t\t\t\t\t<span class=\"target\">SearchOptions</span>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Properties</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.searchoptions.html#limit\" class=\"tsd-kind-icon\">limit</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.searchoptions.html#nexthref\" class=\"tsd-kind-icon\">next<wbr>Href</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.searchoptions.html#offset\" class=\"tsd-kind-icon\">offset</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.searchoptions.html#query\" class=\"tsd-kind-icon\">query</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><a href=\"search.searchoptions.html#resourcetype\" class=\"tsd-kind-icon\">resource<wbr>Type</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Properties</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"limit\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> limit</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">limit<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/search.ts#L14\">search.ts:14</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"nexthref\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> next<wbr>Href</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">next<wbr>Href<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/search.ts#L18\">search.ts:18</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"offset\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> offset</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">offset<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">number</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/search.ts#L15\">search.ts:15</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"query\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> query</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">query<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">string</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/search.ts#L17\">search.ts:17</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t<a name=\"resourcetype\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagOptional\">Optional</span> resource<wbr>Type</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">resource<wbr>Type<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">&quot;tracks&quot;</span><span class=\"tsd-signature-symbol\"> | </span><span class=\"tsd-signature-type\">&quot;users&quot;</span><span class=\"tsd-signature-symbol\"> | </span><span class=\"tsd-signature-type\">&quot;albums&quot;</span><span class=\"tsd-signature-symbol\"> | </span><span class=\"tsd-signature-type\">&quot;playlists&quot;</span><span class=\"tsd-signature-symbol\"> | </span><span class=\"tsd-signature-type\">&quot;all&quot;</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/search.ts#L16\">search.ts:16</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter\">\n\t\t\t\t\t\t<a href=\"search.relatedresponse.html\" class=\"tsd-kind-icon\">Related<wbr>Response</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"current\">\n\t\t\t\t\t<li class=\"current tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"search.searchoptions.html\" class=\"tsd-kind-icon\">Search<wbr>Options</a>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.searchoptions.html#limit\" class=\"tsd-kind-icon\">limit</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.searchoptions.html#nexthref\" class=\"tsd-kind-icon\">next<wbr>Href</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.searchoptions.html#offset\" class=\"tsd-kind-icon\">offset</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.searchoptions.html#query\" class=\"tsd-kind-icon\">query</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li class=\" tsd-kind-property tsd-parent-kind-interface\">\n\t\t\t\t\t\t\t\t<a href=\"search.searchoptions.html#resourcetype\" class=\"tsd-kind-icon\">resource<wbr>Type</a>\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"after-current\">\n\t\t\t\t\t<li class=\" tsd-kind-type-alias tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html#searchresponseall\" class=\"tsd-kind-icon\">Search<wbr>Response<wbr>All</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-type-alias tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../modules/search.html#soundcloudresource\" class=\"tsd-kind-icon\">Soundcloud<wbr>Resource</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t\t<li class=\"tsd-kind-property tsd-parent-kind-interface\"><span class=\"tsd-kind-icon\">Property</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/download_playlist.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>download-playlist | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"download_playlist.html\">download-playlist</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module download-playlist</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Functions</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"download_playlist.html#downloadplaylist\" class=\"tsd-kind-icon\">download<wbr>Playlist</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Functions</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"downloadplaylist\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> download<wbr>Playlist</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">download<wbr>Playlist<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span>, clientID<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span>, axiosInstance<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">AxiosInstance</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-symbol\">[</span><span class=\"tsd-signature-type\">ReadableStream</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">any</span><span class=\"tsd-signature-symbol\">&gt;</span><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">, </span><span class=\"tsd-signature-type\">String</span><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">]</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/download-playlist.ts#L5\">download-playlist.ts:5</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>clientID: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>axiosInstance: <span class=\"tsd-signature-type\">AxiosInstance</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-symbol\">[</span><span class=\"tsd-signature-type\">ReadableStream</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">any</span><span class=\"tsd-signature-symbol\">&gt;</span><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">, </span><span class=\"tsd-signature-type\">String</span><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">]</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html#downloadplaylist\" class=\"tsd-kind-icon\">download<wbr>Playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/filter_media.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>filter-media | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"filter_media.html\">filter-media</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module filter-media</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Interfaces</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/filter_media.filterpredicateobject.html\" class=\"tsd-kind-icon\">Filter<wbr>Predicate<wbr>Object</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/filter_media.filterpredicateobject.html\" class=\"tsd-kind-icon\">Filter<wbr>Predicate<wbr>Object</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/formats.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>formats | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module formats</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Enumerations</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-enum tsd-parent-kind-module\"><a href=\"../enums/formats.default.html\" class=\"tsd-kind-icon\">default</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-enum tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../enums/formats.default.html\" class=\"tsd-kind-icon\">default</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/index.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>index | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module index</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Classes</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-class tsd-parent-kind-module\"><a href=\"../classes/index.scdl.html\" class=\"tsd-kind-icon\">SCDL</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Interfaces</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/index.scdloptions.html\" class=\"tsd-kind-icon\">SCDLOptions</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Variables</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-variable tsd-parent-kind-module\"><a href=\"index.html#default\" class=\"tsd-kind-icon\">default</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Functions</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"index.html#create\" class=\"tsd-kind-icon\">create</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Variables</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"default\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> default</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">default<span class=\"tsd-signature-symbol\">:</span> <a href=\"../classes/index.scdl.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Class\">SCDL</a><span class=\"tsd-signature-symbol\"> = ...</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L330\">index.ts:330</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Functions</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"create\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> create</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">create<span class=\"tsd-signature-symbol\">(</span>options<span class=\"tsd-signature-symbol\">: </span><a href=\"../interfaces/index.scdloptions.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SCDLOptions</a><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><a href=\"../classes/index.scdl.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Class\">SCDL</a></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/index.ts#L333\">index.ts:333</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>options: <a href=\"../interfaces/index.scdloptions.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SCDLOptions</a></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <a href=\"../classes/index.scdl.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Class\">SCDL</a></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-class tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../classes/index.scdl.html\" class=\"tsd-kind-icon\">SCDL</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/index.scdloptions.html\" class=\"tsd-kind-icon\">SCDLOptions</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-variable tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html#default\" class=\"tsd-kind-icon\">default</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html#create\" class=\"tsd-kind-icon\">create</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/info.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>info | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module info</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Interfaces</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/info.setinfo.html\" class=\"tsd-kind-icon\">Set<wbr>Info</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-kind-icon\">Track<wbr>Info</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/info.transcoding.html\" class=\"tsd-kind-icon\">Transcoding</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/info.user.html\" class=\"tsd-kind-icon\">User</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Functions</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"info.html#gettrackinfobyid\" class=\"tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Functions</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"gettrackinfobyid\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> get<wbr>Track<wbr>Info<wbr>ByID</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID<span class=\"tsd-signature-symbol\">(</span>clientID<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span>, axiosInstance<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">AxiosInstance</span>, ids<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">number</span><span class=\"tsd-signature-symbol\">[]</span>, playlistID<span class=\"tsd-signature-symbol\">?: </span><span class=\"tsd-signature-type\">number</span>, playlistSecretToken<span class=\"tsd-signature-symbol\">?: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/info.ts#L231\">info.ts:231</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<div class=\"tsd-comment tsd-typography\">\n\t\t\t\t\t\t\t\t<dl class=\"tsd-comment-tags\">\n\t\t\t\t\t\t\t\t\t<dt>intenral</dt>\n\t\t\t\t\t\t\t\t\t<dd></dd>\n\t\t\t\t\t\t\t\t</dl>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>clientID: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>axiosInstance: <span class=\"tsd-signature-type\">AxiosInstance</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>ids: <span class=\"tsd-signature-type\">number</span><span class=\"tsd-signature-symbol\">[]</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5><span class=\"tsd-flag ts-flagOptional\">Optional</span> playlistID: <span class=\"tsd-signature-type\">number</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5><span class=\"tsd-flag ts-flagOptional\">Optional</span> playlistSecretToken: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">[]</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/info.setinfo.html\" class=\"tsd-kind-icon\">Set<wbr>Info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-kind-icon\">Track<wbr>Info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/info.transcoding.html\" class=\"tsd-kind-icon\">Transcoding</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/info.user.html\" class=\"tsd-kind-icon\">User</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html#gettrackinfobyid\" class=\"tsd-kind-icon\">get<wbr>Track<wbr>Info<wbr>ByID</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/likes.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>likes | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module likes</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Interfaces</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/likes.getlikesoptions.html\" class=\"tsd-kind-icon\">Get<wbr>Likes<wbr>Options</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/likes.like.html\" class=\"tsd-kind-icon\">Like</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/likes.getlikesoptions.html\" class=\"tsd-kind-icon\">Get<wbr>Likes<wbr>Options</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/likes.like.html\" class=\"tsd-kind-icon\">Like</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/protocols.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>protocols | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module protocols</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Enumerations</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-enum tsd-parent-kind-module\"><a href=\"../enums/protocols.default.html\" class=\"tsd-kind-icon\">default</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-enum tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../enums/protocols.default.html\" class=\"tsd-kind-icon\">default</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/search.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>search | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module search</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Interfaces</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter\"><a href=\"../interfaces/search.relatedresponse.html\" class=\"tsd-kind-icon\">Related<wbr>Response</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-interface tsd-parent-kind-module\"><a href=\"../interfaces/search.searchoptions.html\" class=\"tsd-kind-icon\">Search<wbr>Options</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Type aliases</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-type-alias tsd-parent-kind-module\"><a href=\"search.html#searchresponseall\" class=\"tsd-kind-icon\">Search<wbr>Response<wbr>All</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-type-alias tsd-parent-kind-module\"><a href=\"search.html#soundcloudresource\" class=\"tsd-kind-icon\">Soundcloud<wbr>Resource</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Type aliases</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"searchresponseall\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>Search<wbr>Response<wbr>All</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">Search<wbr>Response<wbr>All<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">PaginatedQuery</span><span class=\"tsd-signature-symbol\">&lt;</span><a href=\"../interfaces/info.user.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">User</a><span class=\"tsd-signature-symbol\"> | </span><a href=\"../interfaces/info.setinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">SetInfo</a><span class=\"tsd-signature-symbol\"> | </span><a href=\"../interfaces/info.trackinfo.html\" class=\"tsd-signature-type\" data-tsd-kind=\"Interface\">TrackInfo</a><span class=\"tsd-signature-symbol\">&gt;</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/search.ts#L21\">search.ts:21</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"soundcloudresource\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3>Soundcloud<wbr>Resource</h3>\n\t\t\t\t\t<div class=\"tsd-signature tsd-kind-icon\">Soundcloud<wbr>Resource<span class=\"tsd-signature-symbol\">:</span> <span class=\"tsd-signature-type\">&quot;tracks&quot;</span><span class=\"tsd-signature-symbol\"> | </span><span class=\"tsd-signature-type\">&quot;users&quot;</span><span class=\"tsd-signature-symbol\"> | </span><span class=\"tsd-signature-type\">&quot;albums&quot;</span><span class=\"tsd-signature-symbol\"> | </span><span class=\"tsd-signature-type\">&quot;playlists&quot;</span></div>\n\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/search.ts#L23\">search.ts:23</a></li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter\">\n\t\t\t\t\t\t<a href=\"../interfaces/search.relatedresponse.html\" class=\"tsd-kind-icon\">Related<wbr>Response</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-interface tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"../interfaces/search.searchoptions.html\" class=\"tsd-kind-icon\">Search<wbr>Options</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-type-alias tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html#searchresponseall\" class=\"tsd-kind-icon\">Search<wbr>Response<wbr>All</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-type-alias tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html#soundcloudresource\" class=\"tsd-kind-icon\">Soundcloud<wbr>Resource</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/url.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>url | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module url</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Functions</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"url.html#convertfirebaseurl\" class=\"tsd-kind-icon\">convert<wbr>FirebaseURL</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"url.html#default\" class=\"tsd-kind-icon\">default</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"url.html#isfirebaseurl\" class=\"tsd-kind-icon\">is<wbr>FirebaseURL</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"url.html#ispersonalizedtrackurl\" class=\"tsd-kind-icon\">is<wbr>Personalized<wbr>TrackURL</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"url.html#isplaylisturl\" class=\"tsd-kind-icon\">is<wbr>PlaylistURL</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-function tsd-parent-kind-module\"><a href=\"url.html#stripmobileprefix\" class=\"tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t\t<section class=\"tsd-panel-group tsd-member-group \">\n\t\t\t\t<h2>Functions</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"convertfirebaseurl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> convert<wbr>FirebaseURL</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">convert<wbr>FirebaseURL<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span>, axiosInstance<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">AxiosInstance</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">&gt;</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/url.ts#L54\">url.ts:54</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>axiosInstance: <span class=\"tsd-signature-type\">AxiosInstance</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">Promise</span><span class=\"tsd-signature-symbol\">&lt;</span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">&gt;</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"default\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> default</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">default<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span>, testMobile<span class=\"tsd-signature-symbol\">?: </span><span class=\"tsd-signature-type\">boolean</span>, testFirebase<span class=\"tsd-signature-symbol\">?: </span><span class=\"tsd-signature-type\">boolean</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">boolean</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/url.ts#L12\">url.ts:12</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5><span class=\"tsd-flag ts-flagOptional\">Optional</span> testMobile: <span class=\"tsd-signature-type\">boolean</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5><span class=\"tsd-flag ts-flagOptional\">Optional</span> testFirebase: <span class=\"tsd-signature-type\">boolean</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">boolean</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"isfirebaseurl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> is<wbr>FirebaseURL</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">is<wbr>FirebaseURL<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">boolean</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/url.ts#L50\">url.ts:50</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">boolean</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"ispersonalizedtrackurl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> is<wbr>Personalized<wbr>TrackURL</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">is<wbr>Personalized<wbr>TrackURL<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">boolean</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/url.ts#L38\">url.ts:38</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">boolean</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"isplaylisturl\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> is<wbr>PlaylistURL</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">is<wbr>PlaylistURL<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">boolean</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/url.ts#L27\">url.ts:27</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">boolean</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t\t<section class=\"tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t<a name=\"stripmobileprefix\" class=\"tsd-anchor\"></a>\n\t\t\t\t\t<h3><span class=\"tsd-flag ts-flagConst\">Const</span> strip<wbr>Mobile<wbr>Prefix</h3>\n\t\t\t\t\t<ul class=\"tsd-signatures tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<li class=\"tsd-signature tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix<span class=\"tsd-signature-symbol\">(</span>url<span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span><span class=\"tsd-signature-symbol\">)</span><span class=\"tsd-signature-symbol\">: </span><span class=\"tsd-signature-type\">string</span></li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<ul class=\"tsd-descriptions\">\n\t\t\t\t\t\t<li class=\"tsd-description\">\n\t\t\t\t\t\t\t<aside class=\"tsd-sources\">\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li>Defined in <a href=\"https://github.com/zackradisic/node-soundcloud-downloader/blob/759a505/src/url.ts#L43\">url.ts:43</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</aside>\n\t\t\t\t\t\t\t<h4 class=\"tsd-parameters-title\">Parameters</h4>\n\t\t\t\t\t\t\t<ul class=\"tsd-parameters\">\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<h5>url: <span class=\"tsd-signature-type\">string</span></h5>\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<h4 class=\"tsd-returns-title\">Returns <span class=\"tsd-signature-type\">string</span></h4>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"current tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html#convertfirebaseurl\" class=\"tsd-kind-icon\">convert<wbr>FirebaseURL</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html#default\" class=\"tsd-kind-icon\">default</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html#isfirebaseurl\" class=\"tsd-kind-icon\">is<wbr>FirebaseURL</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html#ispersonalizedtrackurl\" class=\"tsd-kind-icon\">is<wbr>Personalized<wbr>TrackURL</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html#isplaylisturl\" class=\"tsd-kind-icon\">is<wbr>PlaylistURL</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-function tsd-parent-kind-module\">\n\t\t\t\t\t\t<a href=\"url.html#stripmobileprefix\" class=\"tsd-kind-icon\">strip<wbr>Mobile<wbr>Prefix</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules/user.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>user | soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"../assets/css/main.css\">\n\t<script async src=\"../assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"../assets/js/search.json\" data-base=\"..\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"../index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<ul class=\"tsd-breadcrumb\">\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"../modules.html\">soundcloud-downloader</a>\n\t\t\t\t</li>\n\t\t\t\t<li>\n\t\t\t\t\t<a href=\"user.html\">user</a>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t<h1>Module user</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\" \">\n\t\t\t\t\t\t<a href=\"../modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"../assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "docs/modules.html",
    "content": "<!doctype html>\n<html class=\"default no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\t<title>soundcloud-downloader</title>\n\t<meta name=\"description\" content=\"Documentation for soundcloud-downloader\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<link rel=\"stylesheet\" href=\"assets/css/main.css\">\n\t<script async src=\"assets/js/search.js\" id=\"search-script\"></script>\n</head>\n<body>\n<header>\n\t<div class=\"tsd-page-toolbar\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"table-wrap\">\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-search\" data-index=\"assets/js/search.json\" data-base=\".\">\n\t\t\t\t\t<div class=\"field\">\n\t\t\t\t\t\t<label for=\"tsd-search-field\" class=\"tsd-widget search no-caption\">Search</label>\n\t\t\t\t\t\t<input id=\"tsd-search-field\" type=\"text\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<ul class=\"results\">\n\t\t\t\t\t\t<li class=\"state loading\">Preparing search index...</li>\n\t\t\t\t\t\t<li class=\"state failure\">The search index is not available</li>\n\t\t\t\t\t</ul>\n\t\t\t\t\t<a href=\"index.html\" class=\"title\">soundcloud-downloader</a>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"table-cell\" id=\"tsd-widgets\">\n\t\t\t\t\t<div id=\"tsd-filter\">\n\t\t\t\t\t\t<a href=\"#\" class=\"tsd-widget options no-caption\" data-toggle=\"options\">Options</a>\n\t\t\t\t\t\t<div class=\"tsd-filter-group\">\n\t\t\t\t\t\t\t<div class=\"tsd-select\" id=\"tsd-filter-visibility\">\n\t\t\t\t\t\t\t\t<span class=\"tsd-select-label\">All</span>\n\t\t\t\t\t\t\t\t<ul class=\"tsd-select-list\">\n\t\t\t\t\t\t\t\t\t<li data-value=\"public\">Public</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"protected\">Public/Protected</li>\n\t\t\t\t\t\t\t\t\t<li data-value=\"private\" class=\"selected\">All</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-inherited\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-inherited\">Inherited</label>\n\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"tsd-filter-externals\" checked />\n\t\t\t\t\t\t\t<label class=\"tsd-widget\" for=\"tsd-filter-externals\">Externals</label>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<a href=\"#\" class=\"tsd-widget menu no-caption\" data-toggle=\"menu\">Menu</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"tsd-page-title\">\n\t\t<div class=\"container\">\n\t\t\t<h1>soundcloud-downloader</h1>\n\t\t</div>\n\t</div>\n</header>\n<div class=\"container container-main\">\n\t<div class=\"row\">\n\t\t<div class=\"col-8 col-content\">\n\t\t\t<section class=\"tsd-panel-group tsd-index-group\">\n\t\t\t\t<h2>Index</h2>\n\t\t\t\t<section class=\"tsd-panel tsd-index-panel\">\n\t\t\t\t\t<div class=\"tsd-index-content\">\n\t\t\t\t\t\t<section class=\"tsd-index-section \">\n\t\t\t\t\t\t\t<h3>Modules</h3>\n\t\t\t\t\t\t\t<ul class=\"tsd-index-list\">\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/download_playlist.html\" class=\"tsd-kind-icon\">download-<wbr>playlist</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/filter_media.html\" class=\"tsd-kind-icon\">filter-<wbr>media</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/formats.html\" class=\"tsd-kind-icon\">formats</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/index.html\" class=\"tsd-kind-icon\">index</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/info.html\" class=\"tsd-kind-icon\">info</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/likes.html\" class=\"tsd-kind-icon\">likes</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/protocols.html\" class=\"tsd-kind-icon\">protocols</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/search.html\" class=\"tsd-kind-icon\">search</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/url.html\" class=\"tsd-kind-icon\">url</a></li>\n\t\t\t\t\t\t\t\t<li class=\"tsd-kind-module\"><a href=\"modules/user.html\" class=\"tsd-kind-icon\">user</a></li>\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t</section>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\t\t\t</section>\n\t\t</div>\n\t\t<div class=\"col-4 col-menu menu-sticky-wrap menu-highlight\">\n\t\t\t<nav class=\"tsd-navigation primary\">\n\t\t\t\t<ul>\n\t\t\t\t\t<li class=\"current \">\n\t\t\t\t\t\t<a href=\"modules.html\">Exports</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/download_playlist.html\">download-<wbr>playlist</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/filter_media.html\">filter-<wbr>media</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/formats.html\">formats</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/index.html\">index</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/info.html\">info</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/likes.html\">likes</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/protocols.html\">protocols</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/search.html\">search</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\" tsd-kind-module\">\n\t\t\t\t\t\t<a href=\"modules/url.html\">url</a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t\t<nav class=\"tsd-navigation secondary menu-sticky\">\n\t\t\t\t<ul class=\"before-current\">\n\t\t\t\t</ul>\n\t\t\t</nav>\n\t\t</div>\n\t</div>\n</div>\n<footer class=\"with-border-bottom\">\n\t<div class=\"container\">\n\t\t<h2>Legend</h2>\n\t\t<div class=\"tsd-legend-group\">\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-variable\"><span class=\"tsd-kind-icon\">Variable</span></li>\n\t\t\t\t<li class=\"tsd-kind-function\"><span class=\"tsd-kind-icon\">Function</span></li>\n\t\t\t\t<li class=\"tsd-kind-type-alias\"><span class=\"tsd-kind-icon\">Type alias</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-interface\"><span class=\"tsd-kind-icon\">Interface</span></li>\n\t\t\t\t<li class=\"tsd-kind-interface tsd-has-type-parameter\"><span class=\"tsd-kind-icon\">Interface with type parameter</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-enum\"><span class=\"tsd-kind-icon\">Enumeration</span></li>\n\t\t\t</ul>\n\t\t\t<ul class=\"tsd-legend\">\n\t\t\t\t<li class=\"tsd-kind-class\"><span class=\"tsd-kind-icon\">Class</span></li>\n\t\t\t</ul>\n\t\t</div>\n\t</div>\n</footer>\n<div class=\"container tsd-generator\">\n\t<p>Generated using <a href=\"https://typedoc.org/\" target=\"_blank\">TypeDoc</a></p>\n</div>\n<div class=\"overlay\"></div>\n<script src=\"assets/js/main.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "example/constants.js",
    "content": "module.exports = {\n  url: 'URL TO A TRACK',\n  clientID: process.env.CLIENT_ID // remember that client ID is optional\n}\n"
  },
  {
    "path": "example/custom-instance.js",
    "content": "const clientID = require('./constants')\nconst scdlCreate = require('../').create\nconst axios = require('axios').default\n\nconst scdl = scdlCreate({\n  clientID: 'adasdasd',\n  saveClientID: true,\n  filePath: './client_id.json',\n  axiosInstance: axios.create()\n})\n"
  },
  {
    "path": "example/download-discord.js",
    "content": "const Discord = require('discord.js')\nconst scdl = require('../').default\nconst constants = require('./constants')\n\nconst client = new Discord.Client()\nconst token = 'YOUR DISCORD CLIENT TOKEN HERE'\nconst channelID = '123456789'\n\nclient.on('ready', () => {\n  console.log(`Logged in as ${client.user.tag}!`)\n  const channel = client.channels.cache.get(channelID)\n  channel.join().then(connection => {\n    scdl.download(constants.url).then(stream => {\n      connection.play(stream)\n    })\n  })\n})\n\nclient.login(token)\n"
  },
  {
    "path": "example/download-file.js",
    "content": "const scdl = require('../').default\nconst fs = require('fs')\n\nconst constants = require('./constants')\n\nscdl.download(constants.url)\n  .then(stream => stream.pipe(fs.createWriteStream('audio.mp3')))\n  .catch(err => console.log(err))\n"
  },
  {
    "path": "example/download-playlist.js",
    "content": "const fs = require('fs')\nconst path = require('path')\nconst scdl = require('../').default\n\nscdl\n  .downloadPlaylist('URL TO PLAYLIST')\n  .then(([streams, trackNames]) => {\n    streams.forEach((val, idx) => {\n      val.pipe(fs.createWriteStream(path.join('/path/to/folder/', trackNames[idx] + '.mp3')))\n    })\n  })\n"
  },
  {
    "path": "example/get-info.js",
    "content": "const scdl = require('../').default\n\nscdl.getSetInfo('adfkjhalskdjfhlas')\n  .then(info => console.log(info))\n  .catch(err => console.log(err))\n"
  },
  {
    "path": "example/likes.js",
    "content": "const scdl = require('../').default\n\nscdl.getLikes({\n  profileUrl: 'https://soundcloud.com/sfsdjfhkhs'\n}).then(({ collection }) => collection.forEach(like => console.log(like.track)))\n"
  },
  {
    "path": "example/search.js",
    "content": "const scdl = require('../').default\n\nscdl.search({\n  query: 'redbone childish gambino',\n  resourceType: 'tracks'\n})\n  .then(results => results.collection.forEach(track => console.log(track.title)))\n  .catch(err => console.log(err))\n"
  },
  {
    "path": "index.d.ts",
    "content": "import { SCDL as _scdl, create as _create } from './src/index'\n\ndeclare const scdl: _scdl\n\nexport const create: typeof _create\nexport default scdl\n"
  },
  {
    "path": "index.js",
    "content": "module.exports = require('./dist/index')\n"
  },
  {
    "path": "jest.config.js",
    "content": "module.exports = {\n  setupFilesAfterEnv: ['./jest.setup.js']\n}\n"
  },
  {
    "path": "jest.setup.js",
    "content": "jest.setTimeout(20 * 1000)\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"soundcloud-downloader\",\n  \"version\": \"1.0.0\",\n  \"description\": \"Download Soundcloud audio with Node.js\",\n  \"main\": \"index.js\",\n  \"types\": \"./index.d.ts\",\n  \"scripts\": {\n    \"docs\": \"typedoc --out docs ./src --excludeInternal; touch ./docs/.nojekyll\",\n    \"build\": \"npx tsc src/*.ts --outDir dist --esModuleInterop\",\n    \"publish-script\": \"./publish.sh\",\n    \"test\": \"jest --runInBand\"\n  },\n  \"keywords\": [\n    \"soundcloud\",\n    \"soundcloud-api\",\n    \"soundcloud downloader\",\n    \"soundcloud download\",\n    \"soundcloud audio\",\n    \"download soundcloud\",\n    \"scdl\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/zackradisic/node-soundcloud-downloader\"\n  },\n  \"author\": \"Zack Radisic\",\n  \"license\": \"MIT\",\n  \"dependencies\": {\n    \"@babel/runtime\": \"^7.10.3\",\n    \"axios\": \"^0.21.0\",\n    \"dotenv\": \"^8.2.0\",\n    \"m3u8stream\": \"^0.8.0\",\n    \"soundcloud-key-fetch\": \"^1.0.10\"\n  },\n  \"typings\": \"./index.d.ts\",\n  \"devDependencies\": {\n    \"@babel/cli\": \"^7.10.1\",\n    \"@babel/core\": \"^7.10.2\",\n    \"@babel/plugin-transform-runtime\": \"^7.10.3\",\n    \"@babel/preset-env\": \"^7.10.2\",\n    \"@typescript-eslint/eslint-plugin\": \"^3.5.0\",\n    \"@typescript-eslint/parser\": \"^3.5.0\",\n    \"axios-mock-adapter\": \"^1.18.1\",\n    \"babel-watch\": \"^7.0.0\",\n    \"eslint\": \"^7.3.1\",\n    \"eslint-config-standard\": \"^14.1.1\",\n    \"eslint-plugin-import\": \"^2.22.0\",\n    \"eslint-plugin-jest\": \"^23.13.2\",\n    \"eslint-plugin-node\": \"^11.1.0\",\n    \"eslint-plugin-promise\": \"^4.2.1\",\n    \"eslint-plugin-standard\": \"^4.0.1\",\n    \"file-type\": \"^14.6.2\",\n    \"jest\": \"^26.0.1\",\n    \"music-metadata\": \"^7.6.6\",\n    \"typedoc\": \"^0.20.20\",\n    \"typescript\": \"^4.0.2\"\n  }\n}\n"
  },
  {
    "path": "publish.sh",
    "content": "if npm run test; then\n    if npm run build && npm run docs; then \n        npm publish\n    fi\nfi"
  },
  {
    "path": "src/download-media.ts",
    "content": "/** @internal @packageDocumentation */\n\nimport m3u8stream from 'm3u8stream'\nimport STREAMING_PROTOCOLS from './protocols'\nimport { handleRequestErrs, appendURL } from './util'\nimport { Transcoding } from './info'\nimport { AxiosInstance } from 'axios'\n\nconst fromMedia = async (media: Transcoding, clientID: string, axiosInstance: AxiosInstance): Promise<any | m3u8stream.Stream> => {\n  if (!validatemedia) throw new Error('Invalid media object provided')\n\n  try {\n    const link = appendURL(media.url, 'client_id', clientID)\n    const res = await axiosInstance.get(link, {\n      headers: {\n        'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',\n        Accept: '*/*',\n        'Accept-Encoding': 'gzip, deflate, br'\n      },\n      withCredentials: true\n    })\n    if (!res.data.url) throw new Error(`Invalid response from Soundcloud. Check if the URL provided is correct: ${link}`)\n\n    if (media.format.protocol === STREAMING_PROTOCOLS.PROGRESSIVE) {\n      const r = await axiosInstance.get(res.data.url, {\n        withCredentials: true,\n        responseType: 'stream'\n      })\n      return r.data\n    }\n    return m3u8stream(res.data.url)\n  } catch (err) {\n    throw handleRequestErrs(err)\n  }\n}\n\nconst validatemedia = (media: Transcoding) => {\n  if (!media.url || !media.format) return false\n  return true\n}\n\nexport default fromMedia\n"
  },
  {
    "path": "src/download-playlist.ts",
    "content": "import { AxiosInstance } from 'axios'\nimport { download } from './download'\nimport { getSetInfo } from './info'\n\nexport const downloadPlaylist = async (url: string, clientID: string, axiosInstance: AxiosInstance): Promise<[ReadableStream<any>[], String[]]> => {\n  const info = await getSetInfo(url, clientID, axiosInstance)\n\n  const trackNames = []\n  const result = await Promise.all(info.tracks.map(track => {\n    const p = download(track.permalink_url, clientID, axiosInstance)\n    trackNames.push(track.title)\n    return p\n  }))\n\n  return [result, trackNames]\n}\n"
  },
  {
    "path": "src/download-url.ts",
    "content": "/** @internal @packageDocumentation */\n\nimport { AxiosInstance } from 'axios'\nimport m3u8stream from 'm3u8stream'\nimport { handleRequestErrs, appendURL } from './util'\n\nconst fromURL = async (url: string, clientID: string, axiosInstance: AxiosInstance): Promise<any | m3u8stream.Stream> => {\n  try {\n    const link = appendURL(url, 'client_id', clientID)\n    const res = await axiosInstance.get(link, {\n      headers: {\n        'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',\n        Accept: '*/*',\n        'Accept-Encoding': 'gzip, deflate, br'\n      },\n      withCredentials: true\n    })\n    if (!res.data.url) throw new Error(`Invalid response from Soundcloud. Check if the URL provided is correct: ${link}`)\n\n    if (url.includes('/progressive')) {\n      const r = await axiosInstance.get(res.data.url, {\n        withCredentials: true,\n        responseType: 'stream'\n      })\n      return r.data\n    }\n\n    return m3u8stream(res.data.url)\n  } catch (err) {\n    throw handleRequestErrs(err)\n  }\n}\n\nexport default fromURL\n"
  },
  {
    "path": "src/download.ts",
    "content": "/** @internal @packageDocumentation */\n\nimport { AxiosInstance } from 'axios'\nimport m3u8stream from 'm3u8stream'\nimport { handleRequestErrs, appendURL } from './util'\nimport getInfo, { Transcoding } from './info'\n\nexport const getMediaURL = async (url: string, clientID: string, axiosInstance: AxiosInstance): Promise<string> => {\n  const res = await axiosInstance.get(appendURL(url, 'client_id', clientID), {\n    headers: {\n      'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',\n      Accept: '*/*',\n      'Accept-Encoding': 'gzip, deflate, br'\n    },\n    withCredentials: true\n  })\n  if (!res.data.url) throw new Error(`Invalid response from Soundcloud. Check if the URL provided is correct: ${url}`)\n  return res.data.url\n}\n\nexport const getProgressiveStream = async (mediaUrl: string, axiosInstance: AxiosInstance) => {\n  const r = await axiosInstance.get(mediaUrl, {\n    withCredentials: true,\n    responseType: 'stream'\n  })\n\n  return r.data\n}\n\nexport const getHLSStream = (mediaUrl: string) => m3u8stream(mediaUrl)\n\ntype fromURLFunctionBase = (url: string, clientID: string,\n  getMediaURLFunction: (url: string, clientID: string, axiosInstance: AxiosInstance) => Promise<string>,\n  getProgressiveStreamFunction: (mediaUrl: string, axiosInstance: AxiosInstance) => Promise<any>,\n  getHLSStreamFunction: (mediaUrl: string) => m3u8stream.Stream,\n  axiosInstance: AxiosInstance) => Promise<any | m3u8stream.Stream>\n\nexport const fromURLBase: fromURLFunctionBase = async (url: string, clientID: string,\n  getMediaURLFunction: (url: string, clientID: string, axiosInstance: AxiosInstance) => Promise<string>,\n  getProgressiveStreamFunction: (mediaUrl: string, axiosInstance: AxiosInstance) => Promise<any>,\n  getHLSStreamFunction: (mediaUrl: string) => m3u8stream.Stream,\n  axiosInstance: AxiosInstance):Promise<any | m3u8stream.Stream> => {\n  try {\n    const mediaUrl = await getMediaURLFunction(url, clientID, axiosInstance)\n\n    if (url.includes('/progressive')) {\n      return await getProgressiveStreamFunction(mediaUrl, axiosInstance)\n    }\n\n    return getHLSStreamFunction(mediaUrl)\n  } catch (err) {\n    throw handleRequestErrs(err)\n  }\n}\n\nexport const fromURL = async (url: string, clientID: string, axiosInstance: AxiosInstance): Promise<any | m3u8stream.Stream> => await fromURLBase(url, clientID, getMediaURL, getProgressiveStream, getHLSStream, axiosInstance)\n\nexport const fromMediaObjBase = async (media: Transcoding, clientID: string,\n  getMediaURLFunction: (url: string, clientID: string, axiosInstance: AxiosInstance) => Promise<string>,\n  getProgressiveStreamFunction: (mediaUrl: string, axiosInstance: AxiosInstance) => Promise<any>,\n  getHLSStreamFunction: (mediaUrl: string) => m3u8stream.Stream,\n  fromURLFunction: typeof fromURL,\n  axiosInstance: AxiosInstance): Promise<any | m3u8stream.Stream> => {\n  if (!validatemedia(media)) throw new Error('Invalid media object provided')\n  return await fromURLFunction(media.url, clientID, axiosInstance)\n}\n\nexport const fromMediaObj = async (media: Transcoding, clientID: string, axiosInstance: AxiosInstance) => await fromMediaObjBase(media, clientID, getMediaURL, getProgressiveStream, getHLSStream, fromURL, axiosInstance)\n\nexport const fromDownloadLink = async (id: number, clientID: string, axiosInstance: AxiosInstance) => {\n  const { data: { redirectUri } } = await axiosInstance.get(appendURL(`https://api-v2.soundcloud.com/tracks/${id}/download`, 'client_id', clientID))\n  const { data } = await axiosInstance.get(redirectUri, {\n    responseType: 'stream'\n  })\n\n  return data\n}\n\n/** @internal */\nexport const download = async (url: string, clientID: string, axiosInstance: AxiosInstance, useDownloadLink = true) => {\n  const info = await getInfo(url, clientID, axiosInstance)\n  if (info.downloadable && useDownloadLink) {\n    // Some tracks have `downloadable` set to true but will return a 404\n    // when using download API route.\n    try {\n      return await fromDownloadLink(info.id, clientID, axiosInstance)\n    } catch (err) {\n    }\n  }\n\n  return await fromMediaObj(info.media.transcodings[0], clientID, axiosInstance)\n}\n\nconst validatemedia = (media: Transcoding) => {\n  if (!media.url || !media.format) return false\n  return true\n}\n"
  },
  {
    "path": "src/filter-media.ts",
    "content": "import { Transcoding } from './info'\nimport FORMATS from './formats'\nimport STREAMING_PROTOCOLS from './protocols'\n\nexport interface FilterPredicateObject {\n  protocol?: STREAMING_PROTOCOLS,\n  format?: FORMATS\n}\n\n/** @internal */\nconst filterMedia = (media: Transcoding[], predicateObj: FilterPredicateObject): Transcoding[] => {\n  return media.filter(({ format }) => {\n    let match = false\n    if (predicateObj.protocol) match = format.protocol === predicateObj.protocol\n    if (predicateObj.format) match = format.mime_type === predicateObj.format\n    return match\n  })\n}\n\nexport default filterMedia\n"
  },
  {
    "path": "src/formats.ts",
    "content": "/**\n * Audio formats a track can be encoded in.\n */\nenum FORMATS {\n  MP3 = 'audio/mpeg',\n  OPUS = 'audio/ogg; codecs=\"opus\"'\n}\n\n/** @internal */\nexport const _FORMATS = {\n  MP3: FORMATS.MP3,\n  OPUS: FORMATS.OPUS\n}\n\nexport default FORMATS\n"
  },
  {
    "path": "src/index.ts",
    "content": "import sckey from 'soundcloud-key-fetch'\n\nimport getInfo, { getSetInfo, Transcoding, getTrackInfoByID, TrackInfo, User } from './info'\nimport filterMedia, { FilterPredicateObject } from './filter-media'\nimport { download, fromMediaObj } from './download'\n\nimport isValidURL, { convertFirebaseURL, isFirebaseURL, isPersonalizedTrackURL, isPlaylistURL, stripMobilePrefix } from './url'\n\nimport STREAMING_PROTOCOLS, { _PROTOCOLS } from './protocols'\nimport FORMATS, { _FORMATS } from './formats'\nimport { search, related, SoundcloudResource, SearchOptions } from './search'\nimport { downloadPlaylist } from './download-playlist'\nimport axios, { AxiosInstance } from 'axios'\n\nimport * as path from 'path'\nimport * as fs from 'fs'\nimport { PaginatedQuery } from './util'\nimport { GetLikesOptions, getLikes, Like } from './likes'\nimport { getUser } from './user'\n\n/** @internal */\nconst downloadFormat = async (url: string, clientID: string, format: FORMATS, axiosInstance: AxiosInstance) => {\n  const info = await getInfo(url, clientID, axiosInstance)\n  const filtered = filterMedia(info.media.transcodings, { format: format })\n  if (filtered.length === 0) throw new Error(`Could not find media with specified format: (${format})`)\n  return await fromMediaObj(filtered[0], clientID, axiosInstance)\n}\n\ninterface ClientIDData {\n  clientID: string,\n  date: Date\n}\n\nexport interface SCDLOptions {\n  // Set a custom client ID to use\n  clientID?: string,\n  // Set to true to save client ID to file\n  saveClientID?: boolean,\n  // File path to save client ID, defaults to '../client_id.json\"\n  filePath?: string,\n  // Custom axios instance to use\n  axiosInstance?: AxiosInstance,\n  // Whether or not to automatically convert mobile links to regular links, defaults to true\n  stripMobilePrefix?: boolean,\n  // Whether or not to automatically convert SoundCloud Firebase links copied from the mobile app\n  // (e.g. https://soundcloud.app.goo.gl/xxxxxxxxx), defaults to true.\n  convertFirebaseLinks?: boolean,\n}\n\nexport class SCDL {\n  STREAMING_PROTOCOLS: { [key: string]: STREAMING_PROTOCOLS }\n  FORMATS: { [key: string]: FORMATS }\n\n  private _clientID?: string\n  private _filePath?: string\n\n  axios: AxiosInstance\n  saveClientID = process.env.SAVE_CLIENT_ID ? process.env.SAVE_CLIENT_ID.toLowerCase() === 'true' : false\n\n  stripMobilePrefix: boolean\n  convertFirebaseLinks: boolean\n\n  constructor (options?: SCDLOptions) {\n    if (!options) options = {}\n    if (options.saveClientID) {\n      this.saveClientID = options.saveClientID\n      if (options.filePath) this._filePath = options.filePath\n    } else {\n      if (options.clientID) {\n        this._clientID = options.clientID\n      }\n    }\n\n    if (options.axiosInstance) {\n      this.setAxiosInstance(options.axiosInstance)\n    } else {\n      this.setAxiosInstance(axios)\n    }\n\n    if (!options.stripMobilePrefix) options.stripMobilePrefix = true\n    if (!options.convertFirebaseLinks) options.convertFirebaseLinks = true\n\n    this.stripMobilePrefix = options.stripMobilePrefix\n    this.convertFirebaseLinks = options.convertFirebaseLinks\n  }\n\n  /**\n   * Returns a media Transcoding that matches the given predicate object\n   * @param media - The Transcodings to filter\n   * @param predicateObj - The desired Transcoding object to match\n   * @returns An array of Transcodings that match the predicate object\n   */\n  filterMedia (media: Transcoding[], predicateObj: FilterPredicateObject) {\n    return filterMedia(media, predicateObj)\n  }\n\n  /**\n   * Get the audio of a given track. It returns the first format found.\n   *\n   * @param url - The URL of the Soundcloud track\n   * @param useDirectLink - Whether or not to use the download link if the artist has set the track to be downloadable. This has erratic behaviour on some environments.\n   * @returns A ReadableStream containing the audio data\n  */\n  async download (url: string, useDirectLink = true) {\n    return download(await this.prepareURL(url), await this.getClientID(), this.axios, useDirectLink)\n  }\n\n  /**\n   *  Get the audio of a given track with the specified format\n   * @param url - The URL of the Soundcloud track\n   * @param format - The desired format\n  */\n  async downloadFormat (url: string, format: FORMATS) {\n    return downloadFormat(await this.prepareURL(url), await this.getClientID(), format, this.axios)\n  }\n\n  /**\n   * Returns info about a given track.\n   * @param url - URL of the Soundcloud track\n   * @returns Info about the track\n  */\n  async getInfo (url: string) {\n    return getInfo(await this.prepareURL(url), await this.getClientID(), this.axios)\n  }\n\n  /**\n   * Returns info about the given track(s) specified by ID.\n   * @param ids - The ID(s) of the tracks\n   * @returns Info about the track\n   */\n  async getTrackInfoByID (ids: number[], playlistID?: number, playlistSecretToken?: string) {\n    return getTrackInfoByID(await this.getClientID(), this.axios, ids, playlistID, playlistSecretToken)\n  }\n\n  /**\n   * Returns info about the given set\n   * @param url - URL of the Soundcloud set\n   * @returns Info about the set\n   */\n  async getSetInfo (url: string) {\n    return getSetInfo(await this.prepareURL(url), await this.getClientID(), this.axios)\n  }\n\n  /**\n   * Searches for tracks/playlists for the given query\n   * @param options - The search option\n   * @returns SearchResponse\n   */\n  async search (options: SearchOptions) {\n    return search(options, this.axios, await this.getClientID())\n  }\n\n  /**\n   * Finds related tracks to the given track specified by ID\n   * @param id - The ID of the track\n   * @param limit - The number of results to return\n   * @param offset - Used for pagination, set to 0 if you will not use this feature.\n   */\n  async related (id: number, limit: number, offset = 0) {\n    return related(id, limit, offset, this.axios, await this.getClientID())\n  }\n\n  /**\n   * Returns the audio streams and titles of the tracks in the given playlist.\n   * @param url - The url of the playlist\n   */\n  async downloadPlaylist (url: string): Promise<[ReadableStream<any>[], String[]]> {\n    return downloadPlaylist(await this.prepareURL(url), await this.getClientID(), this.axios)\n  }\n\n  /**\n   * Returns track information for a user's likes\n   * @param options - Can either be the profile URL of the user, or their ID\n   * @returns - An array of tracks\n   */\n  async getLikes (options: GetLikesOptions): Promise<PaginatedQuery<Like>> {\n    let id: number\n    const clientID = await this.getClientID()\n    if (options.id) {\n      id = options.id\n    } else if (options.profileUrl) {\n      const user = await getUser(await this.prepareURL(options.profileUrl), clientID, this.axios)\n      id = user.id\n    } else if (options.nextHref) {\n      return await getLikes(options, clientID, this.axios)\n    } else {\n      throw new Error('options.id or options.profileURL must be provided.')\n    }\n    options.id = id\n\n    return getLikes(options, clientID, this.axios)\n  }\n\n  /**\n   * Returns information about a user\n   * @param url - The profile URL of the user\n   */\n  async getUser (url: string): Promise<User> {\n    return getUser(await this.prepareURL(url), await this.getClientID(), this.axios)\n  }\n\n  /**\n   * Sets the instance of Axios to use to make requests to SoundCloud API\n   * @param instance - An instance of Axios\n   */\n  setAxiosInstance (instance: AxiosInstance) {\n    this.axios = instance\n  }\n\n  /**\n   * Returns whether or not the given URL is a valid Soundcloud URL\n   * @param url - URL of the Soundcloud track\n  */\n  isValidUrl (url: string) {\n    return isValidURL(url, this.convertFirebaseLinks, this.stripMobilePrefix)\n  }\n\n  /**\n   * Returns whether or not the given URL is a valid playlist SoundCloud URL\n   * @param url - The URL to check\n   */\n  isPlaylistURL (url: string) {\n    return isPlaylistURL(url)\n  }\n\n  /**\n   * Returns true if the given URL is a personalized track URL. (of the form https://soundcloud.com/discover/sets/personalized-tracks::user-sdlkfjsldfljs:847104873)\n   * @param url - The URL to check\n   */\n  isPersonalizedTrackURL (url: string) {\n    return isPersonalizedTrackURL(url)\n  }\n\n  /**\n   * Returns true if the given URL is a Firebase URL (of the form https://soundcloud.app.goo.gl/XXXXXXXX)\n   * @param url - The URL to check\n   */\n  isFirebaseURL (url: string) {\n    return isFirebaseURL(url)\n  }\n\n  async getClientID (): Promise<string> {\n    if (!this._clientID) {\n      await this.setClientID()\n    }\n\n    return this._clientID\n  }\n\n  /** @internal */\n  async setClientID (clientID?: string): Promise<string> {\n    if (!clientID) {\n      if (!this._clientID) {\n        if (this.saveClientID) {\n          const filename = path.resolve(__dirname, this._filePath ? this._filePath : '../client_id.json')\n          const c = await this._getClientIDFromFile(filename)\n          if (!c) {\n            this._clientID = await sckey.fetchKey()\n            const data = {\n              clientID: this._clientID,\n              date: new Date().toISOString()\n            }\n            fs.writeFile(filename, JSON.stringify(data), {}, err => {\n              if (err) console.log('Failed to save client_id to file: ' + err)\n            })\n          } else {\n            this._clientID = c\n          }\n        } else {\n          this._clientID = await sckey.fetchKey()\n        }\n      }\n\n      return this._clientID\n    }\n\n    this._clientID = clientID\n\n    return clientID\n  }\n\n  /** @internal */\n  private async _getClientIDFromFile (filename: string): Promise<string> {\n    return new Promise((resolve, reject) => {\n      if (!fs.existsSync(filename)) return resolve('')\n\n      fs.readFile(filename, 'utf8', (err: NodeJS.ErrnoException, data: string) => {\n        if (err) return reject(err)\n        let c: ClientIDData\n        try {\n          c = JSON.parse(data)\n        } catch (err) {\n          return reject(err)\n        }\n        if (!c.date && !c.clientID) return reject(new Error(\"Property 'data' or 'clientID' missing from client_id.json\"))\n        if (typeof c.clientID !== 'string') return reject(new Error(\"Property 'clientID' is not a string in client_id.json\"))\n        if (typeof c.date !== 'string') return reject(new Error(\"Property 'date' is not a string in client_id.json\"))\n        const d = new Date(c.date)\n        if (Number.isNaN(d.getDay())) return reject(new Error(\"Invalid date object from 'date' in client_id.json\"))\n        const dayMs = 60 * 60 * 24 * 1000\n        if (new Date().getTime() - d.getTime() >= dayMs) {\n          // Older than a day, delete\n          fs.unlink(filename, err => {\n            if (err) console.log('Failed to delete client_id.json: ' + err)\n          })\n          return resolve('')\n        } else {\n          return resolve(c.clientID)\n        }\n      })\n    })\n  }\n\n  /**\n   * Prepares the given URL by stripping its mobile prefix (if this.stripMobilePrefix is true)\n   * and converting it to a regular URL (if this.convertFireBaseLinks is true.)\n   * @param url\n   */\n  async prepareURL (url: string): Promise<string> {\n    if (this.stripMobilePrefix) url = stripMobilePrefix(url)\n    if (this.convertFirebaseLinks) {\n      if (isFirebaseURL(url)) url = await convertFirebaseURL(url, this.axios)\n    }\n\n    return url\n  }\n}\n\n// SCDL instance with default configutarion\nconst scdl = new SCDL()\n\n// Creates an instance of SCDL with custom configuration\nconst create = (options: SCDLOptions): SCDL => new SCDL(options)\n\nexport { create }\n\nscdl.STREAMING_PROTOCOLS = _PROTOCOLS\nscdl.FORMATS = _FORMATS\n\nexport default scdl\n"
  },
  {
    "path": "src/info.ts",
    "content": "/* eslint-disable camelcase */\nimport { AxiosInstance } from 'axios'\nimport { handleRequestErrs, appendURL, extractIDFromPersonalizedTrackURL } from './util'\n\nimport STREAMING_PROTOCOLS from './protocols'\nimport FORMATS from './formats'\n\n/**\n * A Soundcloud user\n */\nexport interface User {\n  kind: string,\n  avatar_url: string,\n  city: string,\n  comments_count: number,\n  country_code: string,\n  created_at: string,\n  description: string,\n  followers_count: number,\n  followings_count: number,\n  first_name: string,\n  full_name: string,\n  groups_count: number,\n  id: number,\n  last_name: string,\n  permalink_url: string,\n  uri: string,\n  username: string\n}\n\n/**\n * Details about the track\n */\nexport interface TrackInfo {\n  kind: string\n  monetization_model: string,\n  id: number,\n  policy: string,\n  comment_count?: number,\n  full_duration?: number,\n  downloadable?: false,\n  created_at?: string,\n  description?: string,\n  media?: { transcodings: Transcoding[] },\n  title?: string,\n  publisher_metadata?: any,\n  duration?: number,\n  has_downloads_left?: boolean,\n  artwork_url?: string,\n  public?: boolean,\n  streamable?: true,\n  tag_list?: string,\n  genre?: string,\n  reposts_count?: number,\n  label_name?: string,\n  state?: string,\n  last_modified?: string,\n  commentable?: boolean,\n  uri?: string,\n  download_count?: number,\n  likes_count?: number,\n  display_date?: string,\n  user_id?: number,\n  waveform_url?: string,\n  permalink?: string,\n  permalink_url?: string,\n  user?: User,\n  playback_count?: number\n}\n\n/**\n * Details about a Set\n */\nexport interface SetInfo {\n  duration: number,\n  permalink_url: string,\n  reposts_count: number,\n  genre: string,\n  permalink: string,\n  purchase_url?: string,\n  description?: string,\n  uri: string,\n  label_name?: string,\n  tag_list: string,\n  set_type: string,\n  public: boolean,\n  track_count: number,\n  user_id: number,\n  last_modified: string,\n  license: string,\n  tracks: TrackInfo[],\n  id: number,\n  release_date?: string,\n  display_date: string,\n  sharing: string,\n  secret_token?: string,\n  created_at: string,\n  likes_count: number,\n  kind: string,\n  purchase_title?: string,\n  managed_by_feeds: boolean,\n  artwork_url?: string,\n  is_album: boolean,\n  user: User,\n  published_at: string,\n  embeddable_by: string\n}\n\n/**\n * Represents an audio link to a Soundcloud Track\n */\nexport interface Transcoding {\n  url: string,\n  preset: string,\n  snipped: boolean,\n  format: { protocol: STREAMING_PROTOCOLS, mime_type: FORMATS }\n}\n\nconst getTrackInfoBase = async (clientID: string, axiosRef: AxiosInstance, ids: number[], playlistID?: number, playlistSecretToken?: string): Promise<TrackInfo[]> => {\n  let url = appendURL('https://api-v2.soundcloud.com/tracks', 'ids', ids.join(','), 'client_id', clientID)\n  if (playlistID && playlistSecretToken) {\n    url = appendURL(url, 'playlistId', '' + playlistID, 'playlistSecretToken', playlistSecretToken)\n  }\n  try {\n    const { data } = await axiosRef.get(url)\n\n    return data as TrackInfo[]\n  } catch (err) {\n    throw handleRequestErrs(err)\n  }\n}\n\n/** @internal */\nexport const getInfoBase = async <T extends TrackInfo | SetInfo>(url: string, clientID: string, axiosRef: AxiosInstance): Promise<T> => {\n  try {\n    const res = await axiosRef.get(appendURL('https://api-v2.soundcloud.com/resolve', 'url', url, 'client_id', clientID), {\n      withCredentials: true\n    })\n\n    return res.data as T\n  } catch (err) {\n    throw handleRequestErrs(err)\n  }\n}\n\n/** @internal */\nconst getSetInfoBase = async (url: string, clientID: string, axiosRef: AxiosInstance): Promise<SetInfo> => {\n  const setInfo = await getInfoBase<SetInfo>(url, clientID, axiosRef)\n  const temp = [...setInfo.tracks].map(track => track.id)\n  const playlistID = setInfo.id\n  const playlistSecretToken = setInfo.secret_token\n  const incompleteTracks = setInfo.tracks.filter(track => !track.title)\n  if (incompleteTracks.length === 0) {\n    return setInfo\n  }\n  const completeTracks = setInfo.tracks.filter(track => track.title)\n\n  const ids = incompleteTracks.map(t => t.id)\n  if (ids.length > 50) {\n    const splitIds = []\n    for (let x = 0; x <= Math.floor(ids.length / 50); x++) {\n      splitIds.push([])\n    }\n\n    for (let x = 0; x < ids.length; x++) {\n      const i = Math.floor(x / 50)\n      splitIds[i].push(ids[x])\n    }\n\n    const promises = splitIds.map(async ids => await getTrackInfoByID(clientID, axiosRef, ids, playlistID, playlistSecretToken))\n    const info = await Promise.all(promises)\n    setInfo.tracks = completeTracks.concat(...info)\n    setInfo.tracks = sortTracks(setInfo.tracks, temp)\n    return setInfo\n  }\n  const info = await getTrackInfoByID(clientID, axiosRef, ids, playlistID, playlistSecretToken)\n\n  setInfo.tracks = completeTracks.concat(info)\n  setInfo.tracks = sortTracks(setInfo.tracks, temp)\n  return setInfo\n}\n\n/** @internal */\nconst sortTracks = (tracks: TrackInfo[], ids: number[]): TrackInfo[] => {\n  for (let i = 0; i < ids.length; i++) {\n    if (tracks[i].id !== ids[i]) {\n      for (let j = 0; j < tracks.length; j++) {\n        if (tracks[j].id === ids[i]) {\n          const temp = tracks[i]\n          tracks[i] = tracks[j]\n          tracks[j] = temp\n        }\n      }\n    }\n  }\n\n  return tracks\n}\n\n/** @internal */\nconst getInfo = async (url: string, clientID: string, axiosInstance: AxiosInstance): Promise<TrackInfo> => {\n  let data\n  if (url.includes('https://soundcloud.com/discover/sets/personalized-tracks::')) {\n    const idString = extractIDFromPersonalizedTrackURL(url)\n    if (!idString) throw new Error('Could not parse track ID from given URL: ' + url)\n    let id: number\n    try {\n      id = parseInt(idString)\n    } catch (err) {\n      throw new Error('Could not parse track ID from given URL: ' + url)\n    }\n\n    data = (await getTrackInfoByID(clientID, axiosInstance, [id]))[0]\n    if (!data) throw new Error('Could not find track with ID: ' + id)\n  } else {\n    data = await getInfoBase<TrackInfo>(url, clientID, axiosInstance)\n  }\n  if (!data.media) throw new Error('The given URL does not link to a Soundcloud track')\n  return data\n}\n\n/** @internal */\nexport const getSetInfo = async (url: string, clientID: string, axiosInstance: AxiosInstance): Promise<SetInfo> => {\n  const data = await getSetInfoBase(url, clientID, axiosInstance)\n  if (!data.tracks) throw new Error('The given URL does not link to a Soundcloud set')\n  return data\n}\n\n/** @intenral */\nexport const getTrackInfoByID = async (clientID: string, axiosInstance: AxiosInstance, ids: number[], playlistID?: number, playlistSecretToken?: string) => {\n  return await getTrackInfoBase(clientID, axiosInstance, ids, playlistID, playlistSecretToken)\n}\nexport default getInfo\n"
  },
  {
    "path": "src/likes.ts",
    "content": "import { AxiosInstance } from 'axios'\nimport { TrackInfo } from './info'\nimport { appendURL, kindMismatchError, PaginatedQuery } from './util'\n\nconst baseURL = 'https://api-v2.soundcloud.com/users/'\n\nexport interface Like {\n    // eslint-disable-next-line camelcase\n    created_at: string,\n    kind: string,\n    track: TrackInfo\n}\n\nexport interface GetLikesOptions {\n  profileUrl?: string\n  id?: number\n  limit?: number // -1 indicates no limit\n  offset?: number\n  nextHref?: string\n}\n\n/** @internal */\nexport const getLikes = async (options: GetLikesOptions, clientID: string, axiosInstance: AxiosInstance): Promise<PaginatedQuery<Like>> => {\n  let u = ''\n  if (!options.nextHref) {\n    if (!options.limit) options.limit = -1\n    if (!options.offset) options.offset = 0\n    u = appendURL(\n      `https://api-v2.soundcloud.com/users/${options.id}/likes`,\n      'client_id', clientID,\n      'limit', '' + (options.limit === -1 ? 200 : options.limit),\n      'offset', '' + options.offset)\n  } else {\n    u = appendURL(options.nextHref, 'client_id', clientID)\n  }\n\n  let response: PaginatedQuery<Like>\n  let nextHref = 'start'\n\n  // If options.limit > 0, query each page of likes until we have collected\n  // `options.limit` liked tracks.\n  // If options.limit === -1, query every page of likes\n  while (nextHref && (options.limit > 0 || options.limit === -1)) {\n    const { data } = await axiosInstance.get(u)\n\n    const query = data as PaginatedQuery<Like>\n    if (!query.collection) throw new Error('Invalid JSON response received')\n    if (query.collection.length === 0) return data\n\n    if (query.collection[0].kind !== 'like') throw kindMismatchError('like', query.collection[0].kind)\n\n    // Only add tracks (for now)\n    query.collection = query.collection.reduce((prev, curr) => curr.track ? prev.concat(curr) : prev, [])\n    if (!response) {\n      response = query\n    } else {\n      response.collection.push(\n        ...query.collection\n      )\n    }\n\n    if (options.limit !== -1) {\n      options.limit -= query.collection.length\n      // We have collected enough likes\n      if (options.limit <= 0) break\n    }\n\n    nextHref = query.next_href\n    if (nextHref) {\n      if (options.limit !== -1) {\n        const url = new URL(nextHref)\n        url.searchParams.set('limit', '' + options.limit)\n        nextHref = url.toString()\n      }\n      u = appendURL(nextHref, 'client_id', clientID)\n    }\n  }\n\n  return response\n}\n"
  },
  {
    "path": "src/protocols.ts",
    "content": "/**\n * Soundcloud streams tracks using these protocols.\n */\nenum STREAMING_PROTOCOLS {\n  HLS = 'hls',\n  PROGRESSIVE = 'progressive'\n}\n\n/** @internal */\nexport const _PROTOCOLS = {\n  HLS: STREAMING_PROTOCOLS.HLS,\n  PROGRESSIVE: STREAMING_PROTOCOLS.PROGRESSIVE\n}\n\nexport default STREAMING_PROTOCOLS\n"
  },
  {
    "path": "src/search.ts",
    "content": "/* eslint-disable camelcase */\nimport { AxiosInstance } from 'axios'\nimport { TrackInfo, User, SetInfo } from './info'\nimport { appendURL, PaginatedQuery } from './util'\n\n/** @internal */\nconst baseURL = 'https://api-v2.soundcloud.com/search'\n\nexport interface RelatedResponse<T> extends PaginatedQuery<T> {\n  variant: string\n}\n\nexport interface SearchOptions {\n  limit?: number, // defaults to 10\n  offset?: number, // defaults to 0\n  resourceType?: SoundcloudResource | 'all', // defaults to 'tracks'\n  query?: string,\n  nextHref?: string\n}\n\nexport type SearchResponseAll = PaginatedQuery<User | SetInfo | TrackInfo>\n\nexport type SoundcloudResource = 'tracks' | 'users' | 'albums' | 'playlists'\nconst validResourceTypes = ['tracks', 'users', 'albums', 'playlists', 'all']\n\n/** @internal */\nexport const search = async (options: SearchOptions, axiosInstance: AxiosInstance, clientID: string): Promise<SearchResponseAll> => {\n  let url = ''\n  if (!options.limit) options.limit = 10\n  if (!options.offset) options.offset = 0\n  if (!options.resourceType) options.resourceType = 'tracks'\n  if (options.nextHref) {\n    url = appendURL(options.nextHref, 'client_id', clientID)\n  } else if (options.query) {\n    if (!validResourceTypes.includes(options.resourceType)) throw new Error(`${options.resourceType} is not one of ${validResourceTypes.map(str => `'${str}'`).join(', ')}`)\n    url = appendURL(\n      `${baseURL}${options.resourceType === 'all' ? '' : `/${options.resourceType}`}`,\n      'client_id', clientID,\n      'q', options.query,\n      'limit', '' + options.limit,\n      'offset', '' + options.offset)\n  } else {\n    throw new Error('One of options.query or options.nextHref is required')\n  }\n  const { data } = await axiosInstance.get(url)\n  return data as SearchResponseAll\n}\n\n/** @internal */\nexport const related = async <T extends TrackInfo> (id: number, limit = 10, offset = 0, axiosInstance: AxiosInstance, clientID: string): Promise<RelatedResponse<T>> => {\n  const { data } = await axiosInstance.get(appendURL(`https://api-v2.soundcloud.com/tracks/${id}/related`, 'client_id', clientID, 'offset', '' + offset, 'limit', '' + limit))\n  return data as RelatedResponse<T>\n}\n"
  },
  {
    "path": "src/url.ts",
    "content": "import axios, { AxiosInstance } from 'axios'\n\n/** @internal @packageDocumentation */\nconst regexp = /^https?:\\/\\/(soundcloud\\.com)\\/(.*)$/\n\nconst mobileUrlRegex = /^https?:\\/\\/(m\\.soundcloud\\.com)\\/(.*)$/\n\nconst firebaseUrlRegex = /^https?:\\/\\/(soundcloud\\.app\\.goo\\.gl)\\/(.*)$/\n\nconst firebaseRegexp = /https?:\\/\\/(www\\.)?[-a-zA-Z0-9@:%._+~#=]{1,500}\\.[a-zA-Z0-9()]{1,500}\\b([-a-zA-Z0-9()@:%_+.~#?&//\\\\=]*)/g\n\nconst isURL = (url: string, testMobile?: boolean, testFirebase?: boolean) => {\n  let success = false\n  if (testMobile) {\n    if (url.match(mobileUrlRegex)) success = !!(url.match(regexp) as RegExpMatchArray)[2]\n  }\n\n  if (!success && testFirebase) {\n    if (url.match(firebaseRegexp)) success = !!(url.match(firebaseRegexp) as RegExpMatchArray)[2]\n  }\n\n  if (!success && url.match(regexp)) success = !!(url.match(regexp) as RegExpMatchArray)[2]\n\n  return success\n}\n\nexport const isPlaylistURL = (url: string) => {\n  if (!isURL(url)) return false\n\n  try {\n    const u = new URL(url)\n    return u.pathname.includes('/sets/')\n  } catch (err) {\n    return false\n  }\n}\n\nexport const isPersonalizedTrackURL = (url: string) => {\n  if (!isURL(url)) return false\n  return url.includes('https://soundcloud.com/discover/sets/personalized-tracks::')\n}\n\nexport const stripMobilePrefix = (url: string) => {\n  if (!url.includes('m.soundcloud.com')) return url\n  const _url = new URL(url)\n  _url.hostname = 'soundcloud.com'\n  return _url.toString()\n}\n\nexport const isFirebaseURL = (url: string) => {\n  return url.includes('https://soundcloud.app.goo.gl')\n}\n\nexport const convertFirebaseURL = async (url: string, axiosInstance: AxiosInstance) => {\n  const _url = new URL(url)\n  _url.searchParams.set('d', '1')\n  const { data }: { data: string } = await axiosInstance.get(_url.toString())\n\n  const matches = data.match(firebaseRegexp)\n  if (!matches) throw new Error(`Could not find URL for this SoundCloud Firebase URL: ${url}`)\n\n  const firebaseURL = matches.find(match => regexp.test(match))\n  if (!firebaseURL) return undefined\n\n  // Some of the characters are in their unicode character code form (e.g. \\u003d),\n  // use regex to find occurences of \\uXXXX, parse their hexidecimal unicode value and convert to regular char\n  return firebaseURL.replace(/\\\\u([\\d\\w]{4})/gi, (_match, grp) => String.fromCharCode(parseInt(grp, 16)))\n}\n\nexport default isURL\n"
  },
  {
    "path": "src/user.ts",
    "content": "import { AxiosInstance } from 'axios'\nimport { User } from './info'\nimport { appendURL, resolveURL } from './util'\n\n/** @internal */\nexport const getUser = async (url: string, clientID: string, axiosInstance: AxiosInstance): Promise<User> => {\n  const u = appendURL(resolveURL, 'url', url, 'client_id', clientID)\n  const { data } = await axiosInstance.get(u)\n\n  if (!(data as User).avatar_url) throw new Error('JSON response is not a user. Is profile URL correct? : ' + url)\n\n  return data as User\n}\n"
  },
  {
    "path": "src/util.ts",
    "content": "/** @internal @packageDocumentation */\nimport { URL } from 'url'\nimport { AxiosError } from 'axios'\n\n/* eslint-disable camelcase */\nexport interface PaginatedQuery<T> {\n  collection: T[],\n  total_results?: number, // is omitted if limit parameter is supplied\n  next_href: string,\n  query_urn: string\n}\n\nexport const resolveURL = 'https://api-v2.soundcloud.com/resolve'\nexport const handleRequestErrs = (err: AxiosError) => {\n  if (!err.response) return err\n  if (!err.response.status) return err\n\n  if (err.response.status === 401) err.message += ', is your Client ID correct?'\n  if (err.response.status === 404) err.message += ', could not find the song... it may be private - check the URL'\n  return err\n}\n\nexport const appendURL = (url: string, ...params: string[]) => {\n  const u = new URL(url)\n  params.forEach((val, idx) => {\n    if (idx % 2 === 0) u.searchParams.append(val, params[idx + 1])\n  })\n  return u.href\n}\n\nexport const extractIDFromPersonalizedTrackURL = (url: string): string => {\n  if (!url.includes('https://soundcloud.com/discover/sets/personalized-tracks::')) return ''\n\n  const split = url.split(':')\n  if (split.length < 5) return ''\n  return split[4]\n}\n\nexport const kindMismatchError = (expected: string, received: string): Error => new Error(`Expected resouce of kind: (${expected}), received: (${received})`)\n"
  },
  {
    "path": "tests/download-check.js",
    "content": "// const readChunk = require('read-chunk')\nconst fileType = require('file-type')\nconst scdl = require('../').default\n\nconsole.log(scdl)\nscdl.download('https://soundcloud.com/monsune_inc/outta-my-mind', process.env.CLIENT_ID)\n  .then(stream => {\n    fileType.fromStream(stream)\n      .then(type => {\n        if (type.mime !== 'audio/mpeg') {\n          console.log('Invalid file type: ' + type.mime)\n          process.exit(1)\n        }\n\n        console.log('Success running download-check')\n        process.exit(0)\n      })\n      .catch(err => {\n        console.log(err)\n        process.exit(1)\n      })\n\n    stream.on('error', err => {\n      console.log(err)\n      process.exit(1)\n    })\n  })\n  .catch(err => {\n    console.log(err)\n    process.exit(1)\n  })\n"
  },
  {
    "path": "tests/download.test.js",
    "content": "import axios from 'axios'\nimport MockAdapter from 'axios-mock-adapter'\nimport { fromURLBase, fromMediaObjBase, getMediaURL, getProgressiveStream, getHLSStream } from '../dist/download'\n\nconst download = {\n  fromURLBase,\n  getMediaURL,\n  getProgressiveStream,\n  getHLSStream\n}\n\nconst progressiveUrl = 'https://api-v2.soundcloud.com/media/soundcloud:tracks:673346252/5bbe88bd-64e9-4512-a98a-c1cba75a5cef/stream/progressive'\nconst hlsUrl = 'https://api-v2.soundcloud.com/media/soundcloud:tracks:673346252/5bbe88bd-64e9-4512-a98a-c1cba75a5cef/stream/hls'\n\nconst progressiveData = {\n  url: 'https://cf-media.sndcdn.com/xjZ4dqtlTGOU.128.mp3?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiKjovL2NmLW1lZGlhLnNuZGNkbi5jb20veGpaNGRxdGxUR09VLjEyOC5tcDMiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE1OTI4Njc4ODl9fX1dfQ__&Signature=QDzPbJUtaAaD8FkZ~Livtsb98s~YVqFdRty3z5T9o6uAEBr1K9sTPN4ehDB82hHXCk8NIyfcgGgfi4IluRCDUgXyx-ZGS5lt4H3tFLk4BHgfKKXUhszbhT-gah-D5A0Vru~lPDQPLqNb3jYe2nT8m92q6ywbRmkmq5wWnEpnxls3AJ70f1i6k4RsfjeAj2pr6q2wJ3MPuQGR9B3EeAboUvBk2Vah8cglVGKBcdT~0~GY-AtSjFVIcjpLqTZZRGPoDmKQhbeNCYWeVFsfwEq028aKiK5~NuZZcxe-jNMjwl0Bk-CMuTsJvUg4pfQnys-qZpOjR2Tw~WyeMeVZiGBBTA__&Key-Pair-Id=APKAI6TU7MMXM5DG6EPQ'\n}\nconst hlsData = {\n  url: 'https://cf-hls-media.sndcdn.com/playlist/xjZ4dqtlTGOU.128.mp3/playlist.m3u8?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiKjovL2NmLWhscy1tZWRpYS5zbmRjZG4uY29tL3BsYXlsaXN0L3hqWjRkcXRsVEdPVS4xMjgubXAzL3BsYXlsaXN0Lm0zdTgiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE1OTMxMjU1MTh9fX1dfQ__&Signature=SPBY4CPgXi9lf4SV97uxN~8Z6OztRo~ZEOxnnxAImlGmKphqnmw3WkKLI7lH4Md6HF~ZfffrDznWy08b-iFx-B~V~0zcXd~uSq6bgdOn~b7SqVV0M225okaeXaUK-vgpnsJVBiDX0DpnCt3YQZfxxFxBb62KYlXBXkNB-bzymYMX5mtcYU~nu0Exuzp4pFulaeLEMHk5VrHpzLDbGZMDhyZ7nmRwT1DwQcPrXcPMzic~hChBDMIOXEGMYvhgxVjM4lvNfyG-jkTYzRdTLVKuHzeCwkynIBAokrk58P4wmnGLq7xJPn1PdyN5UORpV3KpCf8cBO~pdMkzGs0RD2eT9A__&Key-Pair-Id=APKAI6TU7MMXM5DG6EPQ'\n}\n\ndescribe('Download Tests', () => {\n  describe('fromURL()', () => {\n    it('downloads a track using progressive protocol when given a progressive link', async done => {\n      const url = progressiveUrl\n      const mock = new MockAdapter(axios)\n      const instance = axios.create()\n      mock.onGet(`${url}?client_id=${process.env.CLIENT_ID}`).reply(200, progressiveData)\n      mock.onGet(progressiveData.url).reply(200)\n      const getMediaURLSpy = jest.spyOn(download, 'getMediaURL')\n      const getProgressiveStreamSpy = jest.spyOn(download, 'getProgressiveStream')\n\n      try {\n        await download.fromURLBase(url, process.env.CLIENT_ID, getMediaURLSpy, getProgressiveStreamSpy, null, instance)\n        expect(getMediaURLSpy).toHaveBeenCalled()\n        expect(getProgressiveStreamSpy).toHaveBeenCalled()\n        done()\n      } catch (err) {\n        console.log(err)\n        done(err)\n      }\n    })\n\n    it('downloads a track using HLS protocol when given an HLS link', async done => {\n      const url = hlsUrl\n      const mock = new MockAdapter(axios)\n      const instance = axios.create()\n      mock.onGet(`${url}?client_id=${process.env.CLIENT_ID}`).reply(200, progressiveData)\n      mock.onGet(hlsData.url).reply(200)\n      const getMediaURLSpy = jest.spyOn(download, 'getMediaURL')\n      const getHLSStreamSpy = jest.fn()\n\n      try {\n        await download.fromURLBase(url, process.env.CLIENT_ID, getMediaURLSpy, null, getHLSStreamSpy, instance)\n        expect(getMediaURLSpy).toHaveBeenCalled()\n        expect(getHLSStreamSpy).toHaveBeenCalled()\n        done()\n      } catch (err) {\n        console.log(err)\n        done(err)\n      }\n    })\n  })\n\n  describe('fromMediaObj()', () => {\n    it('should call fromURL() when given a valid media object', async done => {\n      const mediaObj = {\n        url: 'https://api-v2.soundcloud.com/media/soundcloud:tracks:673346252/5bbe88bd-64e9-4512-a98a-c1cba75a5cef/stream/hls',\n        preset: 'mp3_0_0',\n        duration: 226031,\n        snipped: false,\n        format: {\n          protocol: 'hls',\n          mime_type: 'audio/mpeg'\n        },\n        quality: 'sq'\n      }\n      const fromURLSpy = jest.fn()\n      try {\n        await fromMediaObjBase(mediaObj, null, null, null, null, fromURLSpy, null)\n        expect(fromURLSpy).toHaveBeenCalled()\n        done()\n      } catch (err) {\n        done(err)\n      }\n    })\n\n    it('should throw an error if an invalid media object is provided', async done => {\n      const mediaObj = {\n        sdjf: 'sfsdfsdf',\n        sjdfsdf: 'kjdhksdfg'\n      }\n      const fromURLSpy = jest.fn()\n      try {\n        await fromMediaObjBase(mediaObj, null, null, null, null, fromURLSpy, null)\n        expect(fromURLSpy).toHaveBeenCalledTimes(0)\n        done()\n      } catch (err) {\n        expect(!err).toBe(false)\n        done()\n      }\n    })\n  })\n})\n"
  },
  {
    "path": "tests/downloadCheck.test.js",
    "content": "/**\n * @jest-environment node\n */\n\n/**\n *  This file tests the actual download of the a song, without mocking axios\n *\n * Author : Rahul Tarak\n *\n */\nrequire('dotenv').config()\nconst scdl = require('../').default\nconst fileType = require('file-type')\nconst mm = require('music-metadata')\n\nlet downloadedFile\nlet downloadedFile2\n\ndescribe('Real Download Tests', () => {\n  beforeAll(async () => {\n    try {\n      downloadedFile = await scdl.download(\n        'https://soundcloud.com/monsune_inc/outta-my-mind')\n      downloadedFile2 = await scdl.download('https://soundcloud.com/dakota-perez-7/omfg-mashup-hello-i-love-you-yeah-ice-cream-and-wonderful')\n    } catch (err) {\n      console.error(err)\n      process.exit(1)\n    }\n    // console.log(downloadedFile)\n  })\n  it('Stream is Defined', () => {\n    expect(downloadedFile).toBeDefined()\n  })\n  it('Check File Type is Mpeg', async () => {\n    const type = await fileType.fromStream(downloadedFile)\n    expect(type).toBeDefined()\n    expect(type.mime).toBe('audio/mpeg')\n  })\n  it('Check Bitrate of file downloaded by provided link', async () => {\n    const { format: { bitrate } } = await mm.parseStream(downloadedFile2)\n    expect(bitrate / 1000).toBeGreaterThan(200)\n  })\n\n  it('No Errors in Stream', () => {\n    downloadedFile.on('error', (err) => {\n      expect(err).toBeFalsy()\n    })\n  })\n})\n"
  },
  {
    "path": "tests/downloadPlaylist.test.js",
    "content": "/**\n * @jest-environment node\n */\nconst scdl = require('..').default\nconst fileType = require('file-type')\n\nlet streams\nlet trackNames\ndescribe('downloadPlaylist()', () => {\n  beforeAll(async () => {\n    try {\n      const [s, t] = await scdl.downloadPlaylist('https://soundcloud.com/zack-radisic-103764335/sets/test')\n      streams = s\n      trackNames = t\n    } catch (err) {\n      console.log(err)\n    }\n  })\n\n  it('streams are defined', () => {\n    streams.forEach(stream => expect(stream).toBeDefined())\n  })\n\n  it('stream mime type is mpeg', async done => {\n    try {\n      for (const stream of streams) {\n        const type = await fileType.fromStream(stream)\n        expect(type).toBeDefined()\n        expect(type.mime).toBe('audio/mpeg')\n      }\n      done()\n    } catch (err) {\n      console.log(err)\n      done(err)\n    }\n  })\n\n  it('Track names are defined and are of type string', () => {\n    trackNames.forEach(trackName => {\n      expect(trackName).toBeDefined()\n      expect(typeof trackName).toBe('string')\n    })\n  })\n\n  it('No Errors in Stream', () => {\n    streams.forEach(stream => stream.on('error', (err) => {\n      expect(err).toBeFalsy()\n    }))\n  })\n})\n"
  },
  {
    "path": "tests/filter-formats.test.js",
    "content": "import filterFormats from '../dist/filter-media'\nimport STREAMING_PROTOCOLS from '../dist/protocols'\nimport FORMATS from '../dist/formats'\n\nconst testInfo = [\n  {\n    url: 'https://api-v2.soundcloud.com/media/soundcloud:tracks:673346252/5bbe88bd-64e9-4512-a98a-c1cba75a5cef/stream/hls',\n    preset: 'mp3_0_0',\n    duration: 226031,\n    snipped: false,\n    format: { protocol: 'hls', mime_type: 'audio/mpeg' },\n    quality: 'sq'\n  },\n  {\n    url: 'https://api-v2.soundcloud.com/media/soundcloud:tracks:673346252/5bbe88bd-64e9-4512-a98a-c1cba75a5cef/stream/progressive',\n    preset: 'mp3_0_0',\n    duration: 226031,\n    snipped: false,\n    format: { protocol: 'progressive', mime_type: 'audio/mpeg' },\n    quality: 'sq'\n  },\n  {\n    url: 'https://api-v2.soundcloud.com/media/soundcloud:tracks:673346252/1f2b5d95-95e2-4bd2-a7ec-dab872d7e725/stream/hls',\n    preset: 'opus_0_0',\n    duration: 225955,\n    snipped: false,\n    format: { protocol: 'hls', mime_type: 'audio/ogg; codecs=\"opus\"' },\n    quality: 'sq'\n  }\n]\n\ndescribe('filterFormats', () => {\n  it('should match a format with the given streaming protocol', () => {\n    let formats = filterFormats(testInfo, { protocol: STREAMING_PROTOCOLS.PROGRESSIVE })\n    expect(formats.length).toBe(1)\n    expect(formats[0]).toMatchObject(testInfo[1])\n\n    formats = filterFormats(testInfo, { protocol: STREAMING_PROTOCOLS.HLS })\n    expect(formats.length).toBe(2)\n    expect(formats[0]).toMatchObject(testInfo[0])\n    expect(formats[1]).toMatchObject(testInfo[2])\n  })\n\n  it('should match a format with the given format', () => {\n    let formats = filterFormats(testInfo, { format: FORMATS.MP3 })\n    expect(formats.length).toBe(2)\n    expect(formats[0]).toMatchObject(testInfo[0])\n    expect(formats[1]).toMatchObject(testInfo[1])\n\n    formats = filterFormats(testInfo, { format: FORMATS.OPUS })\n    expect(formats.length).toBe(1)\n    expect(formats[0]).toMatchObject(testInfo[2])\n  })\n})\n"
  },
  {
    "path": "tests/get-info.test.js",
    "content": "import axios from 'axios'\nimport MockAdapter from 'axios-mock-adapter'\n\nimport { getInfoBase } from '../dist/info'\n\nconst sampleData = {\n  comment_count: 952,\n  full_duration: 380873,\n  downloadable: false,\n  created_at: '2016-11-01T11:53:09Z',\n  description: null,\n  media: {\n    transcodings: [\n      {\n        url: 'https://api-v2.soundcloud.com/media/soundcloud:tracks:290949554/81a476f0-412c-4df7-b004-1e73da41ac72/stream/hls',\n        preset: 'mp3_0_0',\n        duration: 380873,\n        snipped: false,\n        format: {\n          protocol: 'hls',\n          mime_type: 'audio/mpeg'\n        },\n        quality: 'sq'\n      },\n      {\n        url: 'https://api-v2.soundcloud.com/media/soundcloud:tracks:290949554/48624ebe-5a88-40df-9d11-a76a68fe5975/stream/hls',\n        preset: 'opus_0_0',\n        duration: 380793,\n        snipped: false,\n        format: {\n          protocol: 'hls',\n          mime_type: 'audio/ogg; codecs=\"opus\"'\n        },\n        quality: 'sq'\n      }\n    ]\n  },\n  title: 'Me And Your Mama',\n  publisher_metadata: {\n    p_line_for_display: '℗ 2016 Glassnote Entertainment Group LLC',\n    artist: 'Childish Gambino',\n    isrc: 'USYAH1600102',\n    c_line: '2016 2016 Glassnote Entertainment Group LLC',\n    upc_or_ean: '9341004044821',\n    p_line: '2016 Glassnote Entertainment Group LLC',\n    urn: 'soundcloud:tracks:290949554',\n    explicit: true,\n    c_line_for_display: '© 2016 2016 Glassnote Entertainment Group LLC',\n    contains_music: true,\n    id: 290949554,\n    album_title: '\"Awaken, My Love!\"',\n    release_title: 'Me And Your Mama'\n  },\n  duration: 380873,\n  has_downloads_left: true,\n  artwork_url: 'https://i1.sndcdn.com/artworks-ZRiO7X4LeBvD-0-large.jpg',\n  public: true,\n  streamable: true,\n  tag_list: '',\n  genre: 'R&B & Soul',\n  id: 290949554,\n  reposts_count: 15762,\n  state: 'finished',\n  label_name: 'Liberator Music',\n  last_modified: '2020-06-22T06:11:51Z',\n  commentable: true,\n  policy: 'MONETIZE',\n  visuals: null,\n  kind: 'track',\n  purchase_url: null,\n  sharing: 'public',\n  uri: 'https://api.soundcloud.com/tracks/290949554',\n  secret_token: null,\n  download_count: 0,\n  likes_count: 117396,\n  urn: 'soundcloud:tracks:290949554',\n  license: 'all-rights-reserved',\n  purchase_title: null,\n  display_date: '2016-11-12T00:00:00Z',\n  embeddable_by: 'all',\n  release_date: '2016-11-12T00:00:00Z',\n  user_id: 547647,\n  monetization_model: 'AD_SUPPORTED',\n  waveform_url: 'https://wave.sndcdn.com/QijgbBD7w1Vg_m.json',\n  permalink: 'me-and-your-mama',\n  permalink_url: 'https://soundcloud.com/childish-gambino/me-and-your-mama',\n  user: {\n    avatar_url: 'https://i1.sndcdn.com/avatars-EJ9GGrkQ9typ3a0d-v74n4Q-large.jpg',\n    city: '',\n    comments_count: 1,\n    country_code: 'US',\n    created_at: '2010-01-21T23:08:01Z',\n    creator_subscriptions: [\n      {\n        product: {\n          id: 'creator-pro-unlimited'\n        }\n      }\n    ],\n    creator_subscription: {\n      product: {\n        id: 'creator-pro-unlimited'\n      }\n    },\n    description: '',\n    followers_count: 1193231,\n    followings_count: 28,\n    first_name: 'Childish',\n    full_name: 'Childish Gambino',\n    groups_count: 0,\n    id: 547647,\n    kind: 'user',\n    last_modified: '2020-03-22T07:12:40Z',\n    last_name: 'Gambino',\n    likes_count: 1,\n    playlist_likes_count: 0,\n    permalink: 'childish-gambino',\n    permalink_url: 'https://soundcloud.com/childish-gambino',\n    playlist_count: 15,\n    reposts_count: null,\n    track_count: 128,\n    uri: 'https://api.soundcloud.com/users/547647',\n    urn: 'soundcloud:users:547647',\n    username: 'Childish Gambino',\n    verified: false,\n    visuals: {\n      urn: 'soundcloud:users:547647',\n      enabled: true,\n      visuals: [\n        {\n          urn: 'soundcloud:visuals:91859694',\n          entry_time: 0,\n          visual_url: 'https://i1.sndcdn.com/visuals-000000547647-O9aRcV-original.jpg'\n        }\n      ],\n      tracking: null\n    }\n  },\n  playback_count: 6505074\n}\n\ndescribe('getInfo()', () => {\n  it('returns track info when given a valid url', async done => {\n    const mock = new MockAdapter(axios)\n    const url = 'https://soundcloud.com/childish-gambino/me-and-your-mama'\n    const instance = axios.create()\n    mock.onGet().reply(200, sampleData)\n\n    try {\n      const info = await getInfoBase(url, process.env.CLIENT_ID, instance)\n      expect(info).toEqual(sampleData)\n      done()\n    } catch (err) {\n      done(err)\n    }\n  })\n})\n"
  },
  {
    "path": "tests/get-likes.test.js",
    "content": "/**\n * @jest-environment node\n */\n\nimport scdl from '..'\n\ndescribe('getLikes()', () => {\n  const profileUrl = 'https://soundcloud.com/uiceheidd'\n  const limit = 41\n\n  let response\n  let count\n\n  beforeAll(async () => {\n    try {\n      response = await scdl.getLikes({\n        profileUrl,\n        limit\n      })\n    } catch (err) {\n      console.error(err)\n      process.exit(1)\n    }\n  })\n\n  it('returns a paginated query', () => {\n    expect(response).toBeDefined()\n    const keys = ['collection', 'next_href', 'query_urn']\n    keys.forEach(key => expect(response[key]).toBeDefined())\n  })\n\n  it('the paginated query collection is an array of likes', () => {\n    response.collection.forEach(like => expect(like.kind).toEqual('like'))\n  })\n\n  it('each like should have a track object', () => response.collection.forEach(like => {\n    expect(like.track.kind).toBeDefined()\n    expect(like.track.kind).toEqual('track')\n  }))\n\n  it('collection length should be less than or equal to limit if limit !== -1', () => {\n    count = response.collection.length\n    expect(response.collection.length).toBeLessThanOrEqual(limit)\n  })\n\n  it('should fetch as many liked tracks as possible when limit === -1', async (done) => {\n    try {\n      const likes = await scdl.getLikes({\n        profileUrl,\n        limit: -1\n      })\n      expect(likes.collection.length).toBeGreaterThanOrEqual(count)\n      done()\n    } catch (err) {\n      console.error(err)\n      done(err)\n    }\n  })\n})\n"
  },
  {
    "path": "tests/getSetInfo.test.js",
    "content": "/**\n * @jest-environment node\n */\n\nimport scdl from '../'\n\ndescribe('getSetInfo()', () => {\n  describe('returns valid SetInfo', () => {\n    let info\n    let infoLarge\n    beforeAll(async () => {\n      try {\n        info = await scdl.getSetInfo('https://soundcloud.com/user-845046062/sets/playlist')\n        infoLarge = await scdl.getSetInfo('https://soundcloud.com/ilyanaazman/sets/best-of-mrrevillz')\n      } catch (err) {\n        console.log(err)\n        process.exit(1)\n      }\n    })\n\n    it('returns SetInfo', () => {\n      expect(info).toBeDefined()\n      expect(info.title).toBeDefined()\n      expect(typeof info.title).toBe('string')\n      expect(info.tracks).toBeDefined()\n      expect(typeof info.tracks).toBe('object')\n    })\n\n    it('returns SetInfo with every track containing full information', () => {\n      for (const track of info.tracks) {\n        expect(track.title).toBeDefined()\n      }\n    })\n\n    it('returns SetInfo for playlist with tracks > 55', () => {\n      expect(infoLarge).toBeDefined()\n      expect(info.title).toBeDefined()\n      expect(typeof info.title).toBe('string')\n      expect(info.tracks).toBeDefined()\n      expect(typeof info.tracks).toBe('object')\n    })\n\n    it('returns SetInfo for playlist with every track containing information for playlist with tracks > 55', () => {\n      for (const track of info.tracks) {\n        expect(track.title).toBeDefined()\n      }\n    })\n  })\n})\n"
  },
  {
    "path": "tests/getTrackInfoByID.test.js",
    "content": "/**\n * @jest-environment node\n */\nimport scdl from '../'\n\ndescribe('getTrackInfoByID()', () => {\n  it('returns track info when given a valid url', async done => {\n    try {\n      const info = await scdl.getTrackInfoByID([145997673, 291270539])\n      expect(info[0].title).toBeDefined()\n      expect(info[0].title).toEqual('Logic Ft. Big Sean - Alright (Prod. By Tae Beast)')\n      done()\n    } catch (err) {\n      console.error(err)\n      done(err)\n    }\n  })\n})\n"
  },
  {
    "path": "tests/prepareURL.test.js",
    "content": "/**\n * @jest-environment node\n */\n\nimport scdl from '../'\n\ndescribe('prepareURL()', () => {\n  it('strips a mobile URL of its prefix', async done => {\n    const url = 'https://m.soundcloud.com/sidewalksandskeletons/ic3peak-ill-be-found-sidewalks-and-skeletons-remix'\n    const expected = 'https://soundcloud.com/sidewalksandskeletons/ic3peak-ill-be-found-sidewalks-and-skeletons-remix'\n\n    try {\n      const result = await scdl.prepareURL(url)\n      expect(result).toEqual(expected)\n      done()\n    } catch (err) {\n      done(err)\n    }\n  })\n\n  it('converts a Firebase URL to a regular URL', async done => {\n    const url = 'https://soundcloud.app.goo.gl/z8snjNyHU8zMHH29A'\n    const expected = 'https://soundcloud.com/taliya-jenkins/double-cheese-burger-hold-the?ref=clipboard&p=i&c=0'\n\n    try {\n      const result = await scdl.prepareURL(url)\n      expect(result.toString()).toEqual(expected)\n      done()\n    } catch (err) {\n      done(err)\n    }\n  })\n\n  it('returns the original string if it is not a mobile or Firebase URL', async done => {\n    const url = 'https://soundcloud.com/taliya-jenkins/double-cheese-burger-hold-the?ref=clipboard&p=i&c=0'\n    try {\n      const result = await scdl.prepareURL(url)\n      expect(result).toEqual(url)\n      done()\n    } catch (err) {\n      done(err)\n    }\n  })\n})\n"
  },
  {
    "path": "tests/related.test.js",
    "content": "/**\n * @jest-environment node\n */\n\nimport scdl, { search } from '../'\n\ndescribe('related()', () => {\n  const limit = 10\n  let searchResponse\n\n  beforeAll(async () => {\n    try {\n      searchResponse = await scdl.related(170286204, limit, 0)\n    } catch (err) {\n      console.log(err)\n      process.exit(1)\n    }\n  })\n\n  it('returns a valid SearchResponse object', () => {\n    const keys = ['collection', 'next_href', 'variant', 'query_urn'].forEach(key => expect(searchResponse[key]).toBeDefined())\n  })\n\n  it('resource count returned is equal to limit', () => {\n    expect(searchResponse.collection.length).toBeLessThanOrEqual(limit)\n  })\n\n  it('returns a valid track object', () => {\n    searchResponse.collection.forEach(track => {\n      expect(track.kind).toEqual('track')\n    })\n  })\n})\n"
  },
  {
    "path": "tests/search.test.js",
    "content": "/**\n * @jest-environment node\n */\n\nimport scdl from '../'\n\ndescribe('search()', () => {\n  it('returns a valid search object and collection length equal or less than limit and next_href pagination works', async done => {\n    try {\n      const query = 'borderline tame impala'\n      const types = ['all', 'tracks', 'users', 'albums', 'playlists']\n\n      types.forEach(async (type, idx) => {\n        try {\n          let searchResponse = await scdl.search({\n            query,\n            resourceType: types[idx],\n            limit: 5\n          })\n          let keys = ['collection', 'total_results', 'query_urn'].forEach(key => expect(searchResponse[key]).toBeDefined())\n          expect(searchResponse.collection.length).toBeLessThanOrEqual(5)\n\n          searchResponse = await scdl.search({\n            nextHref: searchResponse.next_href\n          })\n          keys = ['collection', 'total_results', 'query_urn'].forEach(key => expect(searchResponse[key]).toBeDefined())\n          done()\n        } catch (err) {\n          console.error(err)\n          done(err)\n        }\n      })\n    } catch (err) {\n      console.error(err)\n      done(err)\n    }\n  })\n})\n"
  },
  {
    "path": "tests/user.test.js",
    "content": "/**\n * @jest-environment node\n */\n\nimport scdl from '..'\n\ndescribe('getUser()', () => {\n  const profileURL = 'https://soundcloud.com/uiceheidd'\n\n  it('returns a valid user response', async done => {\n    try {\n      const user = await scdl.getUser(profileURL)\n\n      expect(user).toBeDefined()\n      expect(user.kind).toEqual('user')\n      done()\n    } catch (err) {\n      console.error(err)\n      done(err)\n    }\n  })\n})\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n    \"compilerOptions\": {\n        \"target\": \"es5\",\n        \"outDir\": \"dist\",\n        \"module\": \"commonjs\",\n        \"esModuleInterop\": true,\n        \"declaration\": true,\n        \"sourceMap\": true,\n        \"listFiles\": true,\n        \"newLine\": \"LF\",\n        \"noEmitOnError\": true\n    },\n    \"exclude\": [\"node_modules\", \"dist\"]\n}"
  }
]