From 6b7752d7de62f4e408ea203a4a590eaada3d36b4 Mon Sep 17 00:00:00 2001 From: Park Seonu Date: Tue, 30 Aug 2022 10:05:02 +0900 Subject: [PATCH] fix(Constants): typo chore(docs): update docs chore(README.md): update readme.md --- README.md | 41 +++++++++++--------- docs/assets/highlight.css | 22 ++--------- docs/assets/search.js | 2 +- docs/classes/BaseProvider.html | 2 +- docs/classes/HTTPRequester.html | 2 +- docs/classes/Lyrics.html | 2 +- docs/classes/LyricsSearchResultItem.html | 2 +- docs/classes/MelonProvider.html | 2 +- docs/classes/SLyricsHTTPRequestError.html | 2 +- docs/classes/SLyricsNotImplementedError.html | 2 +- docs/index.html | 36 ++++++++--------- docs/interfaces/ILyrics.html | 2 +- docs/interfaces/ILyricsSearchResult.html | 2 +- docs/interfaces/ILyricsSearchResultItem.html | 2 +- docs/interfaces/IProvider.html | 2 +- package.json | 2 +- src/{Constances.ts => Constants.ts} | 0 src/structures/BaseProvider.ts | 2 +- 18 files changed, 58 insertions(+), 69 deletions(-) rename src/{Constances.ts => Constants.ts} (100%) diff --git a/README.md b/README.md index ce441d1..4805705 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,23 @@ -# slyrics - Fetch Lyrics Without Api Key +

🗒️ slyrics - Fetch Lyrics Without Api Key

-## Installation -Using npm: -``` +

+ + slyrics version + +

+ + +## 📥 Installation +`` npm install slyrics --save -``` -Using yarn: -``` -yarn add slyrics -``` +`` +or +``yarn add slyrics`` -## Documentation -[Typedoc](https://sirubot.github.io/slyrics/) +## [Documentation](https://slyrics.cocochino.cafe) +[![pages-build-deployment](https://github.com/SiruBOT/slyrics/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/SiruBOT/slyrics/actions/workflows/pages/pages-build-deployment) -## Typescript Example +## Example Code ```ts import { ILyricsSearchResult } from "./interfaces"; import { Lyrics } from "./structures"; @@ -24,13 +28,12 @@ async function example() { const res: ILyricsSearchResult = await provider.search("RE:WIND"); if (res.entries.length === 0) { console.log("No result"); - } else { - const lyricsInstance: Lyrics = await res.entries[0].getLyrics(); - console.log( - `${res.entries.length} results found.\nFirst one: ${lyricsInstance.title} - ${lyricsInstance.artist} -${lyricsInstance.lyrics}` - ); + return; } + const lyricsInstance: Lyrics = await res.entries[0].getLyrics(); + console.log(res.entires.length + " results"); + console.log("First entry: " + lyricsInstance.title + " - " + lyricsInstance.artist); + console.log(lyricsInstance.lyrics); } example(); @@ -38,4 +41,4 @@ example(); |Provider|tag|Contributor| |------|---|---| -|Melon|melon|Sangoon_Is_Noob| +|Melon|melon|[Sannoob3144](https://github.com/sannoob3144)| diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css index 453a1e9..c068891 100644 --- a/docs/assets/highlight.css +++ b/docs/assets/highlight.css @@ -1,10 +1,10 @@ :root { - --light-hl-0: #001080; - --dark-hl-0: #9CDCFE; + --light-hl-0: #AF00DB; + --dark-hl-0: #C586C0; --light-hl-1: #000000; --dark-hl-1: #D4D4D4; - --light-hl-2: #AF00DB; - --dark-hl-2: #C586C0; + --light-hl-2: #001080; + --dark-hl-2: #9CDCFE; --light-hl-3: #A31515; --dark-hl-3: #CE9178; --light-hl-4: #0000FF; @@ -17,10 +17,6 @@ --dark-hl-7: #4EC9B0; --light-hl-8: #098658; --dark-hl-8: #B5CEA8; - --light-hl-9: #000000FF; - --dark-hl-9: #D4D4D4; - --light-hl-10: #EE0000; - --dark-hl-10: #D7BA7D; --light-code-background: #F5F5F5; --dark-code-background: #1E1E1E; } @@ -35,8 +31,6 @@ --hl-6: var(--light-hl-6); --hl-7: var(--light-hl-7); --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --hl-10: var(--light-hl-10); --code-background: var(--light-code-background); } } @@ -50,8 +44,6 @@ --hl-6: var(--dark-hl-6); --hl-7: var(--dark-hl-7); --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --hl-10: var(--dark-hl-10); --code-background: var(--dark-code-background); } } @@ -65,8 +57,6 @@ body.light { --hl-6: var(--light-hl-6); --hl-7: var(--light-hl-7); --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --hl-10: var(--light-hl-10); --code-background: var(--light-code-background); } @@ -80,8 +70,6 @@ body.dark { --hl-6: var(--dark-hl-6); --hl-7: var(--dark-hl-7); --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --hl-10: var(--dark-hl-10); --code-background: var(--dark-code-background); } @@ -94,6 +82,4 @@ body.dark { .hl-6 { color: var(--hl-6); } .hl-7 { color: var(--hl-7); } .hl-8 { color: var(--hl-8); } -.hl-9 { color: var(--hl-9); } -.hl-10 { color: var(--hl-10); } pre, code { background: var(--code-background); } diff --git a/docs/assets/search.js b/docs/assets/search.js index 1c512e4..40842a1 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\"},\"rows\":[{\"id\":0,\"kind\":128,\"name\":\"SLyricsError\",\"url\":\"classes/SLyricsError.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/SLyricsError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"SLyricsError\"},{\"id\":2,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SLyricsError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"SLyricsError\"},{\"id\":3,\"kind\":128,\"name\":\"SLyricsHTTPRequestError\",\"url\":\"classes/SLyricsHTTPRequestError.html\",\"classes\":\"tsd-kind-class\"},{\"id\":4,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/SLyricsHTTPRequestError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":5,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SLyricsHTTPRequestError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":6,\"kind\":1024,\"name\":\"statusCode\",\"url\":\"classes/SLyricsHTTPRequestError.html#statusCode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":7,\"kind\":1024,\"name\":\"requestURL\",\"url\":\"classes/SLyricsHTTPRequestError.html#requestURL\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":8,\"kind\":1024,\"name\":\"method\",\"url\":\"classes/SLyricsHTTPRequestError.html#method\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":9,\"kind\":128,\"name\":\"SLyricsNotImplementedError\",\"url\":\"classes/SLyricsNotImplementedError.html\",\"classes\":\"tsd-kind-class\"},{\"id\":10,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/SLyricsNotImplementedError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"SLyricsNotImplementedError\"},{\"id\":11,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SLyricsNotImplementedError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"SLyricsNotImplementedError\"},{\"id\":12,\"kind\":256,\"name\":\"IProvider\",\"url\":\"interfaces/IProvider.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":13,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IProvider.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IProvider\"},{\"id\":14,\"kind\":2048,\"name\":\"search\",\"url\":\"interfaces/IProvider.html#search\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IProvider\"},{\"id\":15,\"kind\":256,\"name\":\"ILyrics\",\"url\":\"interfaces/ILyrics.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":16,\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/ILyrics.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyrics\"},{\"id\":17,\"kind\":1024,\"name\":\"lyrics\",\"url\":\"interfaces/ILyrics.html#lyrics\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyrics\"},{\"id\":18,\"kind\":1024,\"name\":\"albumCover\",\"url\":\"interfaces/ILyrics.html#albumCover\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyrics\"},{\"id\":19,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/ILyrics.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyrics\"},{\"id\":20,\"kind\":256,\"name\":\"ILyricsSearchResult\",\"url\":\"interfaces/ILyricsSearchResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":21,\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/ILyricsSearchResult.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResult\"},{\"id\":22,\"kind\":1024,\"name\":\"searchTimeMs\",\"url\":\"interfaces/ILyricsSearchResult.html#searchTimeMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResult\"},{\"id\":23,\"kind\":1024,\"name\":\"entries\",\"url\":\"interfaces/ILyricsSearchResult.html#entries\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResult\"},{\"id\":24,\"kind\":256,\"name\":\"ILyricsSearchResultItem\",\"url\":\"interfaces/ILyricsSearchResultItem.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":25,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/ILyricsSearchResultItem.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResultItem\"},{\"id\":26,\"kind\":1024,\"name\":\"artist\",\"url\":\"interfaces/ILyricsSearchResultItem.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResultItem\"},{\"id\":27,\"kind\":2048,\"name\":\"getLyrics\",\"url\":\"interfaces/ILyricsSearchResultItem.html#getLyrics\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResultItem\"},{\"id\":28,\"kind\":128,\"name\":\"MelonProvider\",\"url\":\"classes/MelonProvider.html\",\"classes\":\"tsd-kind-class\"},{\"id\":29,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MelonProvider.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"MelonProvider\"},{\"id\":30,\"kind\":1024,\"name\":\"baseUrls\",\"url\":\"classes/MelonProvider.html#baseUrls\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"MelonProvider\"},{\"id\":31,\"kind\":2048,\"name\":\"search\",\"url\":\"classes/MelonProvider.html#search\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"MelonProvider\"},{\"id\":32,\"kind\":2048,\"name\":\"getLyricsTemplate\",\"url\":\"classes/MelonProvider.html#getLyricsTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"MelonProvider\"},{\"id\":33,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/MelonProvider.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"MelonProvider\"},{\"id\":34,\"kind\":2048,\"name\":\"formatURL\",\"url\":\"classes/MelonProvider.html#formatURL\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"MelonProvider\"},{\"id\":35,\"kind\":128,\"name\":\"BaseProvider\",\"url\":\"classes/BaseProvider.html\",\"classes\":\"tsd-kind-class\"},{\"id\":36,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BaseProvider.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BaseProvider\"},{\"id\":37,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/BaseProvider.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BaseProvider\"},{\"id\":38,\"kind\":2048,\"name\":\"search\",\"url\":\"classes/BaseProvider.html#search\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BaseProvider\"},{\"id\":39,\"kind\":2048,\"name\":\"formatURL\",\"url\":\"classes/BaseProvider.html#formatURL\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BaseProvider\"},{\"id\":40,\"kind\":128,\"name\":\"HTTPRequester\",\"url\":\"classes/HTTPRequester.html\",\"classes\":\"tsd-kind-class\"},{\"id\":41,\"kind\":2048,\"name\":\"get\",\"url\":\"classes/HTTPRequester.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"HTTPRequester\"},{\"id\":42,\"kind\":2048,\"name\":\"getText\",\"url\":\"classes/HTTPRequester.html#getText\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"HTTPRequester\"},{\"id\":43,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HTTPRequester.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"HTTPRequester\"},{\"id\":44,\"kind\":128,\"name\":\"Lyrics\",\"url\":\"classes/Lyrics.html\",\"classes\":\"tsd-kind-class\"},{\"id\":45,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Lyrics.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":46,\"kind\":1024,\"name\":\"provider\",\"url\":\"classes/Lyrics.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":47,\"kind\":1024,\"name\":\"lyrics\",\"url\":\"classes/Lyrics.html#lyrics\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":48,\"kind\":1024,\"name\":\"title\",\"url\":\"classes/Lyrics.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":49,\"kind\":1024,\"name\":\"artist\",\"url\":\"classes/Lyrics.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":50,\"kind\":1024,\"name\":\"albumCover\",\"url\":\"classes/Lyrics.html#albumCover\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":51,\"kind\":128,\"name\":\"LyricsSearchResultItem\",\"url\":\"classes/LyricsSearchResultItem.html\",\"classes\":\"tsd-kind-class\"},{\"id\":52,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LyricsSearchResultItem.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"},{\"id\":53,\"kind\":1024,\"name\":\"title\",\"url\":\"classes/LyricsSearchResultItem.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"},{\"id\":54,\"kind\":1024,\"name\":\"artist\",\"url\":\"classes/LyricsSearchResultItem.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"},{\"id\":55,\"kind\":1024,\"name\":\"getLyrics\",\"url\":\"classes/LyricsSearchResultItem.html#getLyrics\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"},{\"id\":56,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/LyricsSearchResultItem.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,28.077]],[\"parent/0\",[]],[\"name/1\",[1,25.564]],[\"parent/1\",[0,2.532]],[\"name/2\",[2,19.204]],[\"parent/2\",[0,2.532]],[\"name/3\",[3,21.886]],[\"parent/3\",[]],[\"name/4\",[1,25.564]],[\"parent/4\",[3,1.973]],[\"name/5\",[2,19.204]],[\"parent/5\",[3,1.973]],[\"name/6\",[4,36.55]],[\"parent/6\",[3,1.973]],[\"name/7\",[5,36.55]],[\"parent/7\",[3,1.973]],[\"name/8\",[6,36.55]],[\"parent/8\",[3,1.973]],[\"name/9\",[7,28.077]],[\"parent/9\",[]],[\"name/10\",[1,25.564]],[\"parent/10\",[7,2.532]],[\"name/11\",[2,19.204]],[\"parent/11\",[7,2.532]],[\"name/12\",[8,28.077]],[\"parent/12\",[]],[\"name/13\",[9,28.077]],[\"parent/13\",[8,2.532]],[\"name/14\",[10,28.077]],[\"parent/14\",[8,2.532]],[\"name/15\",[11,23.557]],[\"parent/15\",[]],[\"name/16\",[12,28.077]],[\"parent/16\",[11,2.124]],[\"name/17\",[13,18.092]],[\"parent/17\",[11,2.124]],[\"name/18\",[14,31.442]],[\"parent/18\",[11,2.124]],[\"name/19\",[15,25.564]],[\"parent/19\",[11,2.124]],[\"name/20\",[16,25.564]],[\"parent/20\",[]],[\"name/21\",[12,28.077]],[\"parent/21\",[16,2.305]],[\"name/22\",[17,36.55]],[\"parent/22\",[16,2.305]],[\"name/23\",[18,36.55]],[\"parent/23\",[16,2.305]],[\"name/24\",[19,25.564]],[\"parent/24\",[]],[\"name/25\",[15,25.564]],[\"parent/25\",[19,2.305]],[\"name/26\",[20,28.077]],[\"parent/26\",[19,2.305]],[\"name/27\",[21,31.442]],[\"parent/27\",[19,2.305]],[\"name/28\",[22,20.455]],[\"parent/28\",[]],[\"name/29\",[2,19.204]],[\"parent/29\",[22,1.844]],[\"name/30\",[23,36.55]],[\"parent/30\",[22,1.844]],[\"name/31\",[10,28.077]],[\"parent/31\",[22,1.844]],[\"name/32\",[24,36.55]],[\"parent/32\",[22,1.844]],[\"name/33\",[9,28.077]],[\"parent/33\",[22,1.844]],[\"name/34\",[25,31.442]],[\"parent/34\",[22,1.844]],[\"name/35\",[26,23.557]],[\"parent/35\",[]],[\"name/36\",[2,19.204]],[\"parent/36\",[26,2.124]],[\"name/37\",[9,28.077]],[\"parent/37\",[26,2.124]],[\"name/38\",[10,28.077]],[\"parent/38\",[26,2.124]],[\"name/39\",[25,31.442]],[\"parent/39\",[26,2.124]],[\"name/40\",[27,25.564]],[\"parent/40\",[]],[\"name/41\",[28,36.55]],[\"parent/41\",[27,2.305]],[\"name/42\",[29,36.55]],[\"parent/42\",[27,2.305]],[\"name/43\",[2,19.204]],[\"parent/43\",[27,2.305]],[\"name/44\",[13,18.092]],[\"parent/44\",[]],[\"name/45\",[2,19.204]],[\"parent/45\",[13,1.631]],[\"name/46\",[12,28.077]],[\"parent/46\",[13,1.631]],[\"name/47\",[13,18.092]],[\"parent/47\",[13,1.631]],[\"name/48\",[15,25.564]],[\"parent/48\",[13,1.631]],[\"name/49\",[20,28.077]],[\"parent/49\",[13,1.631]],[\"name/50\",[14,31.442]],[\"parent/50\",[13,1.631]],[\"name/51\",[30,21.886]],[\"parent/51\",[]],[\"name/52\",[2,19.204]],[\"parent/52\",[30,1.973]],[\"name/53\",[15,25.564]],[\"parent/53\",[30,1.973]],[\"name/54\",[20,28.077]],[\"parent/54\",[30,1.973]],[\"name/55\",[21,31.442]],[\"parent/55\",[30,1.973]],[\"name/56\",[1,25.564]],[\"parent/56\",[30,1.973]]],\"invertedIndex\":[[\"__type\",{\"_index\":1,\"name\":{\"1\":{},\"4\":{},\"10\":{},\"56\":{}},\"parent\":{}}],[\"albumcover\",{\"_index\":14,\"name\":{\"18\":{},\"50\":{}},\"parent\":{}}],[\"artist\",{\"_index\":20,\"name\":{\"26\":{},\"49\":{},\"54\":{}},\"parent\":{}}],[\"baseprovider\",{\"_index\":26,\"name\":{\"35\":{}},\"parent\":{\"36\":{},\"37\":{},\"38\":{},\"39\":{}}}],[\"baseurls\",{\"_index\":23,\"name\":{\"30\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":2,\"name\":{\"2\":{},\"5\":{},\"11\":{},\"29\":{},\"36\":{},\"43\":{},\"45\":{},\"52\":{}},\"parent\":{}}],[\"entries\",{\"_index\":18,\"name\":{\"23\":{}},\"parent\":{}}],[\"formaturl\",{\"_index\":25,\"name\":{\"34\":{},\"39\":{}},\"parent\":{}}],[\"get\",{\"_index\":28,\"name\":{\"41\":{}},\"parent\":{}}],[\"getlyrics\",{\"_index\":21,\"name\":{\"27\":{},\"55\":{}},\"parent\":{}}],[\"getlyricstemplate\",{\"_index\":24,\"name\":{\"32\":{}},\"parent\":{}}],[\"gettext\",{\"_index\":29,\"name\":{\"42\":{}},\"parent\":{}}],[\"httprequester\",{\"_index\":27,\"name\":{\"40\":{}},\"parent\":{\"41\":{},\"42\":{},\"43\":{}}}],[\"ilyrics\",{\"_index\":11,\"name\":{\"15\":{}},\"parent\":{\"16\":{},\"17\":{},\"18\":{},\"19\":{}}}],[\"ilyricssearchresult\",{\"_index\":16,\"name\":{\"20\":{}},\"parent\":{\"21\":{},\"22\":{},\"23\":{}}}],[\"ilyricssearchresultitem\",{\"_index\":19,\"name\":{\"24\":{}},\"parent\":{\"25\":{},\"26\":{},\"27\":{}}}],[\"iprovider\",{\"_index\":8,\"name\":{\"12\":{}},\"parent\":{\"13\":{},\"14\":{}}}],[\"lyrics\",{\"_index\":13,\"name\":{\"17\":{},\"44\":{},\"47\":{}},\"parent\":{\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{}}}],[\"lyricssearchresultitem\",{\"_index\":30,\"name\":{\"51\":{}},\"parent\":{\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{}}}],[\"melonprovider\",{\"_index\":22,\"name\":{\"28\":{}},\"parent\":{\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{}}}],[\"method\",{\"_index\":6,\"name\":{\"8\":{}},\"parent\":{}}],[\"name\",{\"_index\":9,\"name\":{\"13\":{},\"33\":{},\"37\":{}},\"parent\":{}}],[\"provider\",{\"_index\":12,\"name\":{\"16\":{},\"21\":{},\"46\":{}},\"parent\":{}}],[\"requesturl\",{\"_index\":5,\"name\":{\"7\":{}},\"parent\":{}}],[\"search\",{\"_index\":10,\"name\":{\"14\":{},\"31\":{},\"38\":{}},\"parent\":{}}],[\"searchtimems\",{\"_index\":17,\"name\":{\"22\":{}},\"parent\":{}}],[\"slyricserror\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{},\"2\":{}}}],[\"slyricshttprequesterror\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{}}}],[\"slyricsnotimplementederror\",{\"_index\":7,\"name\":{\"9\":{}},\"parent\":{\"10\":{},\"11\":{}}}],[\"statuscode\",{\"_index\":4,\"name\":{\"6\":{}},\"parent\":{}}],[\"title\",{\"_index\":15,\"name\":{\"19\":{},\"25\":{},\"48\":{},\"53\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\"},\"rows\":[{\"id\":0,\"kind\":128,\"name\":\"SLyricsError\",\"url\":\"classes/SLyricsError.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/SLyricsError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"SLyricsError\"},{\"id\":2,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SLyricsError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"SLyricsError\"},{\"id\":3,\"kind\":128,\"name\":\"SLyricsHTTPRequestError\",\"url\":\"classes/SLyricsHTTPRequestError.html\",\"classes\":\"tsd-kind-class\"},{\"id\":4,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/SLyricsHTTPRequestError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":5,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SLyricsHTTPRequestError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":6,\"kind\":1024,\"name\":\"statusCode\",\"url\":\"classes/SLyricsHTTPRequestError.html#statusCode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":7,\"kind\":1024,\"name\":\"requestURL\",\"url\":\"classes/SLyricsHTTPRequestError.html#requestURL\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":8,\"kind\":1024,\"name\":\"method\",\"url\":\"classes/SLyricsHTTPRequestError.html#method\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SLyricsHTTPRequestError\"},{\"id\":9,\"kind\":128,\"name\":\"SLyricsNotImplementedError\",\"url\":\"classes/SLyricsNotImplementedError.html\",\"classes\":\"tsd-kind-class\"},{\"id\":10,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/SLyricsNotImplementedError.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"SLyricsNotImplementedError\"},{\"id\":11,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SLyricsNotImplementedError.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"SLyricsNotImplementedError\"},{\"id\":12,\"kind\":256,\"name\":\"IProvider\",\"url\":\"interfaces/IProvider.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":13,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IProvider.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IProvider\"},{\"id\":14,\"kind\":2048,\"name\":\"search\",\"url\":\"interfaces/IProvider.html#search\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IProvider\"},{\"id\":15,\"kind\":256,\"name\":\"ILyrics\",\"url\":\"interfaces/ILyrics.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":16,\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/ILyrics.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyrics\"},{\"id\":17,\"kind\":1024,\"name\":\"lyrics\",\"url\":\"interfaces/ILyrics.html#lyrics\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyrics\"},{\"id\":18,\"kind\":1024,\"name\":\"albumCover\",\"url\":\"interfaces/ILyrics.html#albumCover\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyrics\"},{\"id\":19,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/ILyrics.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyrics\"},{\"id\":20,\"kind\":256,\"name\":\"ILyricsSearchResult\",\"url\":\"interfaces/ILyricsSearchResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":21,\"kind\":1024,\"name\":\"provider\",\"url\":\"interfaces/ILyricsSearchResult.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResult\"},{\"id\":22,\"kind\":1024,\"name\":\"searchTimeMs\",\"url\":\"interfaces/ILyricsSearchResult.html#searchTimeMs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResult\"},{\"id\":23,\"kind\":1024,\"name\":\"entries\",\"url\":\"interfaces/ILyricsSearchResult.html#entries\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResult\"},{\"id\":24,\"kind\":256,\"name\":\"ILyricsSearchResultItem\",\"url\":\"interfaces/ILyricsSearchResultItem.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":25,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/ILyricsSearchResultItem.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResultItem\"},{\"id\":26,\"kind\":1024,\"name\":\"artist\",\"url\":\"interfaces/ILyricsSearchResultItem.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResultItem\"},{\"id\":27,\"kind\":2048,\"name\":\"getLyrics\",\"url\":\"interfaces/ILyricsSearchResultItem.html#getLyrics\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"ILyricsSearchResultItem\"},{\"id\":28,\"kind\":128,\"name\":\"MelonProvider\",\"url\":\"classes/MelonProvider.html\",\"classes\":\"tsd-kind-class\"},{\"id\":29,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MelonProvider.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"MelonProvider\"},{\"id\":30,\"kind\":1024,\"name\":\"baseUrls\",\"url\":\"classes/MelonProvider.html#baseUrls\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"MelonProvider\"},{\"id\":31,\"kind\":2048,\"name\":\"search\",\"url\":\"classes/MelonProvider.html#search\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"MelonProvider\"},{\"id\":32,\"kind\":2048,\"name\":\"getLyricsTemplate\",\"url\":\"classes/MelonProvider.html#getLyricsTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"MelonProvider\"},{\"id\":33,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/MelonProvider.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"MelonProvider\"},{\"id\":34,\"kind\":2048,\"name\":\"formatURL\",\"url\":\"classes/MelonProvider.html#formatURL\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"MelonProvider\"},{\"id\":35,\"kind\":128,\"name\":\"BaseProvider\",\"url\":\"classes/BaseProvider.html\",\"classes\":\"tsd-kind-class\"},{\"id\":36,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BaseProvider.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BaseProvider\"},{\"id\":37,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/BaseProvider.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BaseProvider\"},{\"id\":38,\"kind\":2048,\"name\":\"search\",\"url\":\"classes/BaseProvider.html#search\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BaseProvider\"},{\"id\":39,\"kind\":2048,\"name\":\"formatURL\",\"url\":\"classes/BaseProvider.html#formatURL\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BaseProvider\"},{\"id\":40,\"kind\":128,\"name\":\"HTTPRequester\",\"url\":\"classes/HTTPRequester.html\",\"classes\":\"tsd-kind-class\"},{\"id\":41,\"kind\":2048,\"name\":\"get\",\"url\":\"classes/HTTPRequester.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"HTTPRequester\"},{\"id\":42,\"kind\":2048,\"name\":\"getText\",\"url\":\"classes/HTTPRequester.html#getText\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"HTTPRequester\"},{\"id\":43,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HTTPRequester.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"HTTPRequester\"},{\"id\":44,\"kind\":128,\"name\":\"Lyrics\",\"url\":\"classes/Lyrics.html\",\"classes\":\"tsd-kind-class\"},{\"id\":45,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Lyrics.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":46,\"kind\":1024,\"name\":\"provider\",\"url\":\"classes/Lyrics.html#provider\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":47,\"kind\":1024,\"name\":\"lyrics\",\"url\":\"classes/Lyrics.html#lyrics\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":48,\"kind\":1024,\"name\":\"title\",\"url\":\"classes/Lyrics.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":49,\"kind\":1024,\"name\":\"artist\",\"url\":\"classes/Lyrics.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":50,\"kind\":1024,\"name\":\"url\",\"url\":\"classes/Lyrics.html#url\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":51,\"kind\":1024,\"name\":\"albumCover\",\"url\":\"classes/Lyrics.html#albumCover\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Lyrics\"},{\"id\":52,\"kind\":128,\"name\":\"LyricsSearchResultItem\",\"url\":\"classes/LyricsSearchResultItem.html\",\"classes\":\"tsd-kind-class\"},{\"id\":53,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LyricsSearchResultItem.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"},{\"id\":54,\"kind\":1024,\"name\":\"title\",\"url\":\"classes/LyricsSearchResultItem.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"},{\"id\":55,\"kind\":1024,\"name\":\"artist\",\"url\":\"classes/LyricsSearchResultItem.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"},{\"id\":56,\"kind\":1024,\"name\":\"getLyrics\",\"url\":\"classes/LyricsSearchResultItem.html#getLyrics\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"},{\"id\":57,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/LyricsSearchResultItem.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"LyricsSearchResultItem\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,28.248]],[\"parent/0\",[]],[\"name/1\",[1,25.735]],[\"parent/1\",[0,2.552]],[\"name/2\",[2,19.375]],[\"parent/2\",[0,2.552]],[\"name/3\",[3,22.057]],[\"parent/3\",[]],[\"name/4\",[1,25.735]],[\"parent/4\",[3,1.993]],[\"name/5\",[2,19.375]],[\"parent/5\",[3,1.993]],[\"name/6\",[4,36.721]],[\"parent/6\",[3,1.993]],[\"name/7\",[5,36.721]],[\"parent/7\",[3,1.993]],[\"name/8\",[6,36.721]],[\"parent/8\",[3,1.993]],[\"name/9\",[7,28.248]],[\"parent/9\",[]],[\"name/10\",[1,25.735]],[\"parent/10\",[7,2.552]],[\"name/11\",[2,19.375]],[\"parent/11\",[7,2.552]],[\"name/12\",[8,28.248]],[\"parent/12\",[]],[\"name/13\",[9,28.248]],[\"parent/13\",[8,2.552]],[\"name/14\",[10,28.248]],[\"parent/14\",[8,2.552]],[\"name/15\",[11,23.728]],[\"parent/15\",[]],[\"name/16\",[12,28.248]],[\"parent/16\",[11,2.144]],[\"name/17\",[13,17.262]],[\"parent/17\",[11,2.144]],[\"name/18\",[14,31.612]],[\"parent/18\",[11,2.144]],[\"name/19\",[15,25.735]],[\"parent/19\",[11,2.144]],[\"name/20\",[16,25.735]],[\"parent/20\",[]],[\"name/21\",[12,28.248]],[\"parent/21\",[16,2.325]],[\"name/22\",[17,36.721]],[\"parent/22\",[16,2.325]],[\"name/23\",[18,36.721]],[\"parent/23\",[16,2.325]],[\"name/24\",[19,25.735]],[\"parent/24\",[]],[\"name/25\",[15,25.735]],[\"parent/25\",[19,2.325]],[\"name/26\",[20,28.248]],[\"parent/26\",[19,2.325]],[\"name/27\",[21,31.612]],[\"parent/27\",[19,2.325]],[\"name/28\",[22,20.626]],[\"parent/28\",[]],[\"name/29\",[2,19.375]],[\"parent/29\",[22,1.864]],[\"name/30\",[23,36.721]],[\"parent/30\",[22,1.864]],[\"name/31\",[10,28.248]],[\"parent/31\",[22,1.864]],[\"name/32\",[24,36.721]],[\"parent/32\",[22,1.864]],[\"name/33\",[9,28.248]],[\"parent/33\",[22,1.864]],[\"name/34\",[25,31.612]],[\"parent/34\",[22,1.864]],[\"name/35\",[26,23.728]],[\"parent/35\",[]],[\"name/36\",[2,19.375]],[\"parent/36\",[26,2.144]],[\"name/37\",[9,28.248]],[\"parent/37\",[26,2.144]],[\"name/38\",[10,28.248]],[\"parent/38\",[26,2.144]],[\"name/39\",[25,31.612]],[\"parent/39\",[26,2.144]],[\"name/40\",[27,25.735]],[\"parent/40\",[]],[\"name/41\",[28,36.721]],[\"parent/41\",[27,2.325]],[\"name/42\",[29,36.721]],[\"parent/42\",[27,2.325]],[\"name/43\",[2,19.375]],[\"parent/43\",[27,2.325]],[\"name/44\",[13,17.262]],[\"parent/44\",[]],[\"name/45\",[2,19.375]],[\"parent/45\",[13,1.56]],[\"name/46\",[12,28.248]],[\"parent/46\",[13,1.56]],[\"name/47\",[13,17.262]],[\"parent/47\",[13,1.56]],[\"name/48\",[15,25.735]],[\"parent/48\",[13,1.56]],[\"name/49\",[20,28.248]],[\"parent/49\",[13,1.56]],[\"name/50\",[30,36.721]],[\"parent/50\",[13,1.56]],[\"name/51\",[14,31.612]],[\"parent/51\",[13,1.56]],[\"name/52\",[31,22.057]],[\"parent/52\",[]],[\"name/53\",[2,19.375]],[\"parent/53\",[31,1.993]],[\"name/54\",[15,25.735]],[\"parent/54\",[31,1.993]],[\"name/55\",[20,28.248]],[\"parent/55\",[31,1.993]],[\"name/56\",[21,31.612]],[\"parent/56\",[31,1.993]],[\"name/57\",[1,25.735]],[\"parent/57\",[31,1.993]]],\"invertedIndex\":[[\"__type\",{\"_index\":1,\"name\":{\"1\":{},\"4\":{},\"10\":{},\"57\":{}},\"parent\":{}}],[\"albumcover\",{\"_index\":14,\"name\":{\"18\":{},\"51\":{}},\"parent\":{}}],[\"artist\",{\"_index\":20,\"name\":{\"26\":{},\"49\":{},\"55\":{}},\"parent\":{}}],[\"baseprovider\",{\"_index\":26,\"name\":{\"35\":{}},\"parent\":{\"36\":{},\"37\":{},\"38\":{},\"39\":{}}}],[\"baseurls\",{\"_index\":23,\"name\":{\"30\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":2,\"name\":{\"2\":{},\"5\":{},\"11\":{},\"29\":{},\"36\":{},\"43\":{},\"45\":{},\"53\":{}},\"parent\":{}}],[\"entries\",{\"_index\":18,\"name\":{\"23\":{}},\"parent\":{}}],[\"formaturl\",{\"_index\":25,\"name\":{\"34\":{},\"39\":{}},\"parent\":{}}],[\"get\",{\"_index\":28,\"name\":{\"41\":{}},\"parent\":{}}],[\"getlyrics\",{\"_index\":21,\"name\":{\"27\":{},\"56\":{}},\"parent\":{}}],[\"getlyricstemplate\",{\"_index\":24,\"name\":{\"32\":{}},\"parent\":{}}],[\"gettext\",{\"_index\":29,\"name\":{\"42\":{}},\"parent\":{}}],[\"httprequester\",{\"_index\":27,\"name\":{\"40\":{}},\"parent\":{\"41\":{},\"42\":{},\"43\":{}}}],[\"ilyrics\",{\"_index\":11,\"name\":{\"15\":{}},\"parent\":{\"16\":{},\"17\":{},\"18\":{},\"19\":{}}}],[\"ilyricssearchresult\",{\"_index\":16,\"name\":{\"20\":{}},\"parent\":{\"21\":{},\"22\":{},\"23\":{}}}],[\"ilyricssearchresultitem\",{\"_index\":19,\"name\":{\"24\":{}},\"parent\":{\"25\":{},\"26\":{},\"27\":{}}}],[\"iprovider\",{\"_index\":8,\"name\":{\"12\":{}},\"parent\":{\"13\":{},\"14\":{}}}],[\"lyrics\",{\"_index\":13,\"name\":{\"17\":{},\"44\":{},\"47\":{}},\"parent\":{\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{}}}],[\"lyricssearchresultitem\",{\"_index\":31,\"name\":{\"52\":{}},\"parent\":{\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{}}}],[\"melonprovider\",{\"_index\":22,\"name\":{\"28\":{}},\"parent\":{\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{}}}],[\"method\",{\"_index\":6,\"name\":{\"8\":{}},\"parent\":{}}],[\"name\",{\"_index\":9,\"name\":{\"13\":{},\"33\":{},\"37\":{}},\"parent\":{}}],[\"provider\",{\"_index\":12,\"name\":{\"16\":{},\"21\":{},\"46\":{}},\"parent\":{}}],[\"requesturl\",{\"_index\":5,\"name\":{\"7\":{}},\"parent\":{}}],[\"search\",{\"_index\":10,\"name\":{\"14\":{},\"31\":{},\"38\":{}},\"parent\":{}}],[\"searchtimems\",{\"_index\":17,\"name\":{\"22\":{}},\"parent\":{}}],[\"slyricserror\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{},\"2\":{}}}],[\"slyricshttprequesterror\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{}}}],[\"slyricsnotimplementederror\",{\"_index\":7,\"name\":{\"9\":{}},\"parent\":{\"10\":{},\"11\":{}}}],[\"statuscode\",{\"_index\":4,\"name\":{\"6\":{}},\"parent\":{}}],[\"title\",{\"_index\":15,\"name\":{\"19\":{},\"25\":{},\"48\":{},\"54\":{}},\"parent\":{}}],[\"url\",{\"_index\":30,\"name\":{\"50\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/classes/BaseProvider.html b/docs/classes/BaseProvider.html index bd37bd7..036abc6 100644 --- a/docs/classes/BaseProvider.html +++ b/docs/classes/BaseProvider.html @@ -1 +1 @@ -BaseProvider | slyrics

Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BaseProvider

Hierarchy

Implements

Index

Constructors

Properties

Methods

Constructors

Properties

name: string

Methods

  • formatURL(templateStr: string, ...toReplace: string[]): string

Generated using TypeDoc

\ No newline at end of file +BaseProvider | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BaseProvider

Hierarchy

Implements

Index

Constructors

Properties

Methods

Constructors

Properties

name: string

Methods

  • formatURL(templateStr: string, ...toReplace: string[]): string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/HTTPRequester.html b/docs/classes/HTTPRequester.html index d1bd7c6..dcdf526 100644 --- a/docs/classes/HTTPRequester.html +++ b/docs/classes/HTTPRequester.html @@ -1 +1 @@ -HTTPRequester | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HTTPRequester

Hierarchy

  • HTTPRequester

Index

Constructors

Methods

Constructors

Methods

  • get(url: string): Promise<Response>
  • getText(url: string): Promise<string>

Generated using TypeDoc

\ No newline at end of file +HTTPRequester | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HTTPRequester

Hierarchy

  • HTTPRequester

Index

Constructors

Methods

Constructors

Methods

  • get(url: string): Promise<Response>
  • getText(url: string): Promise<string>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Lyrics.html b/docs/classes/Lyrics.html index 05e5ec5..7f3787d 100644 --- a/docs/classes/Lyrics.html +++ b/docs/classes/Lyrics.html @@ -1 +1 @@ -Lyrics | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Lyrics

Hierarchy

  • Lyrics

Implements

Index

Constructors

  • new Lyrics(provider: BaseProvider, title: string, artist: string, lyrics: null | string, albumCover?: string | Buffer): Lyrics

Properties

albumCover?: string | Buffer
artist: string
lyrics: null | string
provider: BaseProvider
title: string

Generated using TypeDoc

\ No newline at end of file +Lyrics | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Lyrics

Hierarchy

  • Lyrics

Implements

Index

Constructors

  • new Lyrics(provider: BaseProvider, title: string, artist: string, lyrics: null | string, url: string, albumCover?: string | Buffer): Lyrics

Properties

albumCover?: string | Buffer
artist: string
lyrics: null | string
provider: BaseProvider
title: string
url: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/LyricsSearchResultItem.html b/docs/classes/LyricsSearchResultItem.html index 09989dc..403ee4a 100644 --- a/docs/classes/LyricsSearchResultItem.html +++ b/docs/classes/LyricsSearchResultItem.html @@ -1 +1 @@ -LyricsSearchResultItem | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LyricsSearchResultItem

Hierarchy

  • LyricsSearchResultItem

Implements

Index

Constructors

Properties

Constructors

Properties

artist: string
getLyrics: () => Promise<Lyrics>

Type declaration

title: string

Generated using TypeDoc

\ No newline at end of file +LyricsSearchResultItem | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LyricsSearchResultItem

Hierarchy

  • LyricsSearchResultItem

Implements

Index

Constructors

Properties

Constructors

Properties

artist: string
getLyrics: () => Promise<Lyrics>

Type declaration

title: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/MelonProvider.html b/docs/classes/MelonProvider.html index 78aa62e..e4527a5 100644 --- a/docs/classes/MelonProvider.html +++ b/docs/classes/MelonProvider.html @@ -1 +1 @@ -MelonProvider | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class MelonProvider

Hierarchy

Index

Constructors

Properties

baseUrls: MelonBaseUrls
name: string

Methods

  • formatURL(templateStr: string, ...toReplace: string[]): string
  • getLyricsTemplate(title: string, artist: string, melonId: string): () => Promise<Lyrics>

Generated using TypeDoc

\ No newline at end of file +MelonProvider | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class MelonProvider

Hierarchy

Index

Constructors

Properties

baseUrls: MelonBaseUrls
name: string

Methods

  • formatURL(templateStr: string, ...toReplace: string[]): string
  • getLyricsTemplate(title: string, artist: string, melonId: string): () => Promise<Lyrics>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/SLyricsHTTPRequestError.html b/docs/classes/SLyricsHTTPRequestError.html index 9d83d3d..6aed2a3 100644 --- a/docs/classes/SLyricsHTTPRequestError.html +++ b/docs/classes/SLyricsHTTPRequestError.html @@ -1,4 +1,4 @@ -SLyricsHTTPRequestError | slyrics
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SLyricsHTTPRequestError

Hierarchy

Index

Constructors

Properties

message: string
method: string
name: string
requestURL: string
stack?: string
statusCode: number
prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration