Update doc

This commit is contained in:
patrickkfkan 2023-10-29 02:34:52 +08:00
parent 7815c68ea8
commit df2eca18ad
96 changed files with 558 additions and 527 deletions

View File

@ -29,6 +29,26 @@ import bcfetch from 'bandcamp-fetch';
const results = await bcfetch.discovery.discover(...); const results = await bcfetch.discovery.discover(...);
``` ```
### User Sessions
When you login to Bandcamp through a desktop browser, the session gets assigned a "Cookie". You can pass the value of this cookie to the library and gain access to your private collection as well as high-quality MP3 streams of purchased media:
```
bcfetch.setCookie('xxxx');
const album =
```
The library exports a `BandcampFetch` instance mainly for backward compatibility with previous versions. You can also create separate instances. This is useful when you want to support multiple authenticated user sessions.
```
import { BandcampFetch } from 'bandcamp-fetch';
const bcfetch = new BandcampFetch();
```
###
# API # API
## Discovery API ## Discovery API

View File

@ -127,7 +127,7 @@ bandcamp-fetch
#### Defined in #### Defined in
[lib/types/Article.ts:51](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L51) [lib/types/Article.ts:51](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L51)
___ ___
@ -137,7 +137,7 @@ ___
#### Defined in #### Defined in
[lib/types/Label.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Label.ts#L9) [lib/types/Label.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Label.ts#L9)
___ ___
@ -147,7 +147,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:47](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L47) [lib/types/Search.ts:47](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L47)
## Variables ## Variables
@ -157,4 +157,4 @@ ___
#### Defined in #### Defined in
[index.ts:68](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/index.ts#L68) [index.ts:68](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/index.ts#L68)

View File

@ -44,7 +44,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -62,7 +62,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -80,7 +80,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -107,7 +107,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -130,7 +130,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -150,4 +150,4 @@ ___
#### Defined in #### Defined in
[lib/album/AlbumAPI.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/album/AlbumAPI.ts#L16) [lib/album/AlbumAPI.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/album/AlbumAPI.ts#L16)

View File

@ -46,7 +46,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -64,7 +64,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -82,7 +82,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -109,7 +109,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -132,7 +132,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -152,7 +152,7 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L31) [lib/article/ArticleAPI.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L31)
___ ___
@ -166,7 +166,7 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L26) [lib/article/ArticleAPI.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L26)
___ ___
@ -186,4 +186,4 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:43](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L43) [lib/article/ArticleAPI.ts:43](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L43)

View File

@ -43,7 +43,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L14) [lib/common/BaseAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L14)
## Accessors ## Accessors
@ -61,7 +61,7 @@ BaseAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
## Methods ## Methods
@ -88,7 +88,7 @@ BaseAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -111,7 +111,7 @@ BaseAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -131,7 +131,7 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L21) [lib/autocomplete/AutocompleteAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L21)
**getSuggestions**(`params`): `Promise`<[`AutoCompleteTag`](../interfaces/AutoCompleteTag.md)[]\> **getSuggestions**(`params`): `Promise`<[`AutoCompleteTag`](../interfaces/AutoCompleteTag.md)[]\>
@ -147,7 +147,7 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L22) [lib/autocomplete/AutocompleteAPI.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L22)
**getSuggestions**(`params`): `Promise`<[`AutoCompleteTag`](../interfaces/AutoCompleteTag.md)[] \| [`AutocompleteLocation`](../interfaces/AutocompleteLocation.md)[]\> **getSuggestions**(`params`): `Promise`<[`AutoCompleteTag`](../interfaces/AutoCompleteTag.md)[] \| [`AutocompleteLocation`](../interfaces/AutocompleteLocation.md)[]\>
@ -163,4 +163,4 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:23](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L23) [lib/autocomplete/AutocompleteAPI.ts:23](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L23)

View File

@ -46,7 +46,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -64,7 +64,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -82,7 +82,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -109,7 +109,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -132,7 +132,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -152,7 +152,7 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L31) [lib/band/BandAPI.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L31)
___ ___
@ -172,7 +172,7 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:42](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L42) [lib/band/BandAPI.ts:42](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L42)
___ ___
@ -192,4 +192,4 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:85](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L85) [lib/band/BandAPI.ts:85](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L85)

View File

@ -46,7 +46,7 @@
#### Defined in #### Defined in
[lib/BandcampFetch.ts:56](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L56) [lib/BandcampFetch.ts:56](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L56)
## Properties ## Properties
@ -56,7 +56,7 @@
#### Defined in #### Defined in
[lib/BandcampFetch.ts:29](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L29) [lib/BandcampFetch.ts:29](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L29)
___ ___
@ -66,7 +66,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L35) [lib/BandcampFetch.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L35)
___ ___
@ -76,7 +76,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:39](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L39) [lib/BandcampFetch.ts:39](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L39)
___ ___
@ -86,7 +86,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L33) [lib/BandcampFetch.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L33)
___ ___
@ -96,7 +96,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L31) [lib/BandcampFetch.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L31)
___ ___
@ -106,7 +106,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L37) [lib/BandcampFetch.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L37)
___ ___
@ -116,7 +116,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:32](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L32) [lib/BandcampFetch.ts:32](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L32)
___ ___
@ -143,7 +143,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:41](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L41) [lib/BandcampFetch.ts:41](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L41)
___ ___
@ -153,7 +153,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L38) [lib/BandcampFetch.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L38)
___ ___
@ -163,7 +163,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:36](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L36) [lib/BandcampFetch.ts:36](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L36)
___ ___
@ -173,7 +173,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:34](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L34) [lib/BandcampFetch.ts:34](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L34)
___ ___
@ -183,7 +183,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L30) [lib/BandcampFetch.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L30)
## Accessors ## Accessors
@ -197,7 +197,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:118](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L118) [lib/BandcampFetch.ts:118](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L118)
___ ___
@ -211,7 +211,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:114](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L114) [lib/BandcampFetch.ts:114](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L114)
## Methods ## Methods
@ -231,4 +231,4 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:109](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L109) [lib/BandcampFetch.ts:109](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L109)

View File

@ -40,7 +40,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L14) [lib/common/BaseAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L14)
## Accessors ## Accessors
@ -54,7 +54,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
## Methods ## Methods
@ -77,7 +77,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -96,4 +96,4 @@
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)

View File

@ -59,7 +59,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -77,7 +77,7 @@ BaseAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -91,7 +91,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -118,7 +118,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -141,4 +141,4 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)

View File

@ -35,7 +35,7 @@
#### Defined in #### Defined in
[lib/utils/Cache.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L13) [lib/utils/Cache.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L13)
## Methods ## Methods
@ -55,7 +55,7 @@
#### Defined in #### Defined in
[lib/utils/Cache.ts:74](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L74) [lib/utils/Cache.ts:74](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L74)
___ ___
@ -82,7 +82,7 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:39](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L39) [lib/utils/Cache.ts:39](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L39)
___ ___
@ -102,7 +102,7 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:70](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L70) [lib/utils/Cache.ts:70](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L70)
___ ___
@ -122,7 +122,7 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L35) [lib/utils/Cache.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L35)
___ ___
@ -150,7 +150,7 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:85](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L85) [lib/utils/Cache.ts:85](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L85)
___ ___
@ -178,7 +178,7 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:43](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L43) [lib/utils/Cache.ts:43](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L43)
___ ___
@ -199,7 +199,7 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:58](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L58) [lib/utils/Cache.ts:58](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L58)
___ ___
@ -220,7 +220,7 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L30) [lib/utils/Cache.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L30)
___ ___
@ -241,4 +241,4 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L21) [lib/utils/Cache.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L21)

View File

@ -28,7 +28,7 @@
#### Defined in #### Defined in
[lib/BandcampFetch.ts:127](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L127) [lib/BandcampFetch.ts:127](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L127)
## Methods ## Methods
@ -48,7 +48,7 @@
#### Defined in #### Defined in
[lib/BandcampFetch.ts:131](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L131) [lib/BandcampFetch.ts:131](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L131)
___ ___
@ -68,7 +68,7 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:139](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L139) [lib/BandcampFetch.ts:139](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L139)
___ ___
@ -89,4 +89,4 @@ ___
#### Defined in #### Defined in
[lib/BandcampFetch.ts:135](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L135) [lib/BandcampFetch.ts:135](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L135)

View File

@ -46,7 +46,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -64,7 +64,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -82,7 +82,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -102,7 +102,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/discovery/DiscoveryAPI.ts:76](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/discovery/DiscoveryAPI.ts#L76) [lib/discovery/DiscoveryAPI.ts:76](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/discovery/DiscoveryAPI.ts#L76)
___ ___
@ -129,7 +129,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -152,7 +152,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -166,7 +166,7 @@ ___
#### Defined in #### Defined in
[lib/discovery/DiscoveryAPI.ts:24](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/discovery/DiscoveryAPI.ts#L24) [lib/discovery/DiscoveryAPI.ts:24](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/discovery/DiscoveryAPI.ts#L24)
___ ___
@ -186,4 +186,4 @@ ___
#### Defined in #### Defined in
[lib/discovery/DiscoveryAPI.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/discovery/DiscoveryAPI.ts#L31) [lib/discovery/DiscoveryAPI.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/discovery/DiscoveryAPI.ts#L31)

View File

@ -48,7 +48,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -66,7 +66,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -84,7 +84,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -111,7 +111,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -134,7 +134,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -154,7 +154,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:52](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L52) [lib/fan/FanAPI.ts:59](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L59)
___ ___
@ -174,7 +174,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:72](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L72) [lib/fan/FanAPI.ts:79](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L79)
___ ___
@ -194,7 +194,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:82](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L82) [lib/fan/FanAPI.ts:89](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L89)
___ ___
@ -214,7 +214,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:41](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L41) [lib/fan/FanAPI.ts:41](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L41)
___ ___
@ -234,4 +234,4 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:62](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L62) [lib/fan/FanAPI.ts:69](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L69)

View File

@ -36,7 +36,7 @@ Error.constructor
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:106](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L106) [lib/utils/Fetcher.ts:106](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L106)
## Properties ## Properties
@ -46,4 +46,4 @@ Error.constructor
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:104](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L104) [lib/utils/Fetcher.ts:104](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L104)

View File

@ -31,7 +31,7 @@
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L20) [lib/utils/Fetcher.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L20)
## Accessors ## Accessors
@ -45,7 +45,7 @@
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L33) [lib/utils/Fetcher.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L33)
## Methods ## Methods
@ -68,7 +68,7 @@
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L37) [lib/utils/Fetcher.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L37)
**fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -87,7 +87,7 @@
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L38) [lib/utils/Fetcher.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L38)
___ ___
@ -107,4 +107,4 @@ ___
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L25) [lib/utils/Fetcher.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L25)

View File

@ -44,7 +44,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L14) [lib/common/BaseAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L14)
## Accessors ## Accessors
@ -62,7 +62,7 @@ BaseAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
## Methods ## Methods
@ -89,7 +89,7 @@ BaseAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -112,7 +112,7 @@ BaseAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -133,7 +133,7 @@ ___
#### Defined in #### Defined in
[lib/image/ImageAPI.ts:27](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/image/ImageAPI.ts#L27) [lib/image/ImageAPI.ts:27](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/image/ImageAPI.ts#L27)
___ ___
@ -153,4 +153,4 @@ ___
#### Defined in #### Defined in
[lib/image/ImageAPI.ts:47](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/image/ImageAPI.ts#L47) [lib/image/ImageAPI.ts:47](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/image/ImageAPI.ts#L47)

View File

@ -21,7 +21,7 @@
#### Defined in #### Defined in
[lib/utils/Limiter.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Limiter.ts#L7) [lib/utils/Limiter.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Limiter.ts#L7)
## Methods ## Methods
@ -47,7 +47,7 @@
#### Defined in #### Defined in
[lib/utils/Limiter.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Limiter.ts#L18) [lib/utils/Limiter.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Limiter.ts#L18)
___ ___
@ -67,4 +67,4 @@ ___
#### Defined in #### Defined in
[lib/utils/Limiter.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Limiter.ts#L14) [lib/utils/Limiter.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Limiter.ts#L14)

View File

@ -42,7 +42,7 @@
#### Defined in #### Defined in
[lib/album/AlbumAPI.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/album/AlbumAPI.ts#L33) [lib/album/AlbumAPI.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/album/AlbumAPI.ts#L33)
## Accessors ## Accessors
@ -60,7 +60,7 @@ AlbumAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -78,7 +78,7 @@ AlbumAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -105,7 +105,7 @@ AlbumAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -128,7 +128,7 @@ AlbumAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -152,4 +152,4 @@ ___
#### Defined in #### Defined in
[lib/album/AlbumAPI.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/album/AlbumAPI.ts#L38) [lib/album/AlbumAPI.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/album/AlbumAPI.ts#L38)

View File

@ -44,7 +44,7 @@
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:60](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L60) [lib/article/ArticleAPI.ts:60](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L60)
## Accessors ## Accessors
@ -62,7 +62,7 @@ ArticleAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -80,7 +80,7 @@ ArticleAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -107,7 +107,7 @@ ArticleAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -130,7 +130,7 @@ ArticleAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -154,7 +154,7 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:69](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L69) [lib/article/ArticleAPI.ts:69](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L69)
___ ___
@ -172,7 +172,7 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:65](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L65) [lib/article/ArticleAPI.ts:65](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L65)
___ ___
@ -196,4 +196,4 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:43](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L43) [lib/article/ArticleAPI.ts:43](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L43)

View File

@ -41,7 +41,7 @@
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:64](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L64) [lib/autocomplete/AutocompleteAPI.ts:64](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L64)
## Accessors ## Accessors
@ -59,7 +59,7 @@ AutocompleteAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
## Methods ## Methods
@ -86,7 +86,7 @@ AutocompleteAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -109,7 +109,7 @@ AutocompleteAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -133,7 +133,7 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:69](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L69) [lib/autocomplete/AutocompleteAPI.ts:69](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L69)
**getSuggestions**(`params`): `Promise`<[`AutoCompleteTag`](../interfaces/AutoCompleteTag.md)[]\> **getSuggestions**(`params`): `Promise`<[`AutoCompleteTag`](../interfaces/AutoCompleteTag.md)[]\>
@ -153,7 +153,7 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:70](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L70) [lib/autocomplete/AutocompleteAPI.ts:70](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L70)
**getSuggestions**(`params`): `Promise`<[`AutoCompleteTag`](../interfaces/AutoCompleteTag.md)[] \| [`AutocompleteLocation`](../interfaces/AutocompleteLocation.md)[]\> **getSuggestions**(`params`): `Promise`<[`AutoCompleteTag`](../interfaces/AutoCompleteTag.md)[] \| [`AutocompleteLocation`](../interfaces/AutocompleteLocation.md)[]\>
@ -173,4 +173,4 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:71](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L71) [lib/autocomplete/AutocompleteAPI.ts:71](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L71)

View File

@ -44,7 +44,7 @@
#### Defined in #### Defined in
[lib/band/BandAPI.ts:136](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L136) [lib/band/BandAPI.ts:136](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L136)
## Accessors ## Accessors
@ -62,7 +62,7 @@ BandAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -80,7 +80,7 @@ BandAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -107,7 +107,7 @@ BandAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -130,7 +130,7 @@ BandAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -154,7 +154,7 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:141](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L141) [lib/band/BandAPI.ts:141](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L141)
___ ___
@ -178,7 +178,7 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:145](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L145) [lib/band/BandAPI.ts:145](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L145)
___ ___
@ -202,4 +202,4 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:149](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L149) [lib/band/BandAPI.ts:149](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L149)

View File

@ -44,7 +44,7 @@
#### Defined in #### Defined in
[lib/discovery/DiscoveryAPI.ts:136](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/discovery/DiscoveryAPI.ts#L136) [lib/discovery/DiscoveryAPI.ts:136](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/discovery/DiscoveryAPI.ts#L136)
## Accessors ## Accessors
@ -62,7 +62,7 @@ DiscoveryAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -80,7 +80,7 @@ DiscoveryAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -104,7 +104,7 @@ DiscoveryAPI.imageAPI
#### Defined in #### Defined in
[lib/discovery/DiscoveryAPI.ts:149](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/discovery/DiscoveryAPI.ts#L149) [lib/discovery/DiscoveryAPI.ts:149](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/discovery/DiscoveryAPI.ts#L149)
___ ___
@ -131,7 +131,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -154,7 +154,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -172,7 +172,7 @@ ___
#### Defined in #### Defined in
[lib/discovery/DiscoveryAPI.ts:141](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/discovery/DiscoveryAPI.ts#L141) [lib/discovery/DiscoveryAPI.ts:141](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/discovery/DiscoveryAPI.ts#L141)
___ ___
@ -196,4 +196,4 @@ ___
#### Defined in #### Defined in
[lib/discovery/DiscoveryAPI.ts:145](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/discovery/DiscoveryAPI.ts#L145) [lib/discovery/DiscoveryAPI.ts:145](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/discovery/DiscoveryAPI.ts#L145)

View File

@ -46,7 +46,7 @@
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:143](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L143) [lib/fan/FanAPI.ts:166](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L166)
## Accessors ## Accessors
@ -64,7 +64,7 @@ FanAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -82,7 +82,7 @@ FanAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -109,7 +109,7 @@ FanAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -132,7 +132,7 @@ FanAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -156,7 +156,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:152](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L152) [lib/fan/FanAPI.ts:175](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L175)
___ ___
@ -180,7 +180,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:160](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L160) [lib/fan/FanAPI.ts:183](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L183)
___ ___
@ -204,7 +204,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:164](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L164) [lib/fan/FanAPI.ts:187](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L187)
___ ___
@ -228,7 +228,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:148](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L148) [lib/fan/FanAPI.ts:171](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L171)
___ ___
@ -252,4 +252,4 @@ ___
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:156](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L156) [lib/fan/FanAPI.ts:179](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L179)

View File

@ -42,7 +42,7 @@
#### Defined in #### Defined in
[lib/image/ImageAPI.ts:64](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/image/ImageAPI.ts#L64) [lib/image/ImageAPI.ts:64](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/image/ImageAPI.ts#L64)
## Accessors ## Accessors
@ -60,7 +60,7 @@ ImageAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
## Methods ## Methods
@ -87,7 +87,7 @@ ImageAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -110,7 +110,7 @@ ImageAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -135,7 +135,7 @@ ___
#### Defined in #### Defined in
[lib/image/ImageAPI.ts:73](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/image/ImageAPI.ts#L73) [lib/image/ImageAPI.ts:73](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/image/ImageAPI.ts#L73)
___ ___
@ -159,4 +159,4 @@ ___
#### Defined in #### Defined in
[lib/image/ImageAPI.ts:69](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/image/ImageAPI.ts#L69) [lib/image/ImageAPI.ts:69](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/image/ImageAPI.ts#L69)

View File

@ -47,7 +47,7 @@
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:94](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L94) [lib/search/SearchAPI.ts:94](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L94)
## Accessors ## Accessors
@ -65,7 +65,7 @@ SearchAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -83,7 +83,7 @@ SearchAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -107,7 +107,7 @@ SearchAPI.imageAPI
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:107](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L107) [lib/search/SearchAPI.ts:107](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L107)
___ ___
@ -131,7 +131,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:99](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L99) [lib/search/SearchAPI.ts:99](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L99)
___ ___
@ -155,7 +155,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:103](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L103) [lib/search/SearchAPI.ts:103](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L103)
___ ___
@ -179,7 +179,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:115](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L115) [lib/search/SearchAPI.ts:115](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L115)
___ ___
@ -206,7 +206,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -229,7 +229,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -253,7 +253,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:50](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L50) [lib/search/SearchAPI.ts:50](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L50)
`Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultTrack`](../interfaces/SearchResultTrack.md)\>\> `Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultTrack`](../interfaces/SearchResultTrack.md)\>\>
@ -273,7 +273,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:51](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L51) [lib/search/SearchAPI.ts:51](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L51)
`Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultFan`](../interfaces/SearchResultFan.md)\>\> `Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultFan`](../interfaces/SearchResultFan.md)\>\>
@ -293,7 +293,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:52](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L52) [lib/search/SearchAPI.ts:52](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L52)
`Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultAny`](../README.md#searchresultany)\>\> `Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultAny`](../README.md#searchresultany)\>\>
@ -313,7 +313,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:53](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L53) [lib/search/SearchAPI.ts:53](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L53)
___ ___
@ -337,4 +337,4 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:111](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L111) [lib/search/SearchAPI.ts:111](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L111)

View File

@ -43,7 +43,7 @@
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:50](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L50) [lib/show/ShowAPI.ts:50](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L50)
## Accessors ## Accessors
@ -61,7 +61,7 @@ ShowAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -79,7 +79,7 @@ ShowAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -106,7 +106,7 @@ ShowAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -129,7 +129,7 @@ ShowAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -153,7 +153,7 @@ ___
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:55](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L55) [lib/show/ShowAPI.ts:55](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L55)
___ ___
@ -177,4 +177,4 @@ ___
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:59](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L59) [lib/show/ShowAPI.ts:59](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L59)

View File

@ -46,7 +46,7 @@
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:148](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L148) [lib/tag/TagAPI.ts:148](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L148)
## Accessors ## Accessors
@ -64,7 +64,7 @@ TagAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -82,7 +82,7 @@ TagAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -109,7 +109,7 @@ TagAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -132,7 +132,7 @@ TagAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -156,7 +156,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:161](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L161) [lib/tag/TagAPI.ts:161](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L161)
___ ___
@ -180,7 +180,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:157](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L157) [lib/tag/TagAPI.ts:157](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L157)
___ ___
@ -204,7 +204,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:169](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L169) [lib/tag/TagAPI.ts:169](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L169)
___ ___
@ -228,7 +228,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:165](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L165) [lib/tag/TagAPI.ts:165](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L165)
___ ___
@ -246,4 +246,4 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:153](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L153) [lib/tag/TagAPI.ts:153](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L153)

View File

@ -42,7 +42,7 @@
#### Defined in #### Defined in
[lib/track/TrackAPI.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/track/TrackAPI.ts#L33) [lib/track/TrackAPI.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/track/TrackAPI.ts#L33)
## Accessors ## Accessors
@ -60,7 +60,7 @@ TrackAPI.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -78,7 +78,7 @@ TrackAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -105,7 +105,7 @@ TrackAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -128,7 +128,7 @@ TrackAPI.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -152,4 +152,4 @@ ___
#### Defined in #### Defined in
[lib/track/TrackAPI.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/track/TrackAPI.ts#L37) [lib/track/TrackAPI.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/track/TrackAPI.ts#L37)

View File

@ -49,7 +49,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -67,7 +67,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -85,7 +85,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -105,7 +105,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:34](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L34) [lib/search/SearchAPI.ts:34](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L34)
___ ___
@ -125,7 +125,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L26) [lib/search/SearchAPI.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L26)
___ ___
@ -145,7 +145,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L30) [lib/search/SearchAPI.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L30)
___ ___
@ -165,7 +165,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:42](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L42) [lib/search/SearchAPI.ts:42](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L42)
___ ___
@ -192,7 +192,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -215,7 +215,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -235,7 +235,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:50](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L50) [lib/search/SearchAPI.ts:50](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L50)
`Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultTrack`](../interfaces/SearchResultTrack.md)\>\> `Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultTrack`](../interfaces/SearchResultTrack.md)\>\>
@ -251,7 +251,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:51](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L51) [lib/search/SearchAPI.ts:51](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L51)
`Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultFan`](../interfaces/SearchResultFan.md)\>\> `Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultFan`](../interfaces/SearchResultFan.md)\>\>
@ -267,7 +267,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:52](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L52) [lib/search/SearchAPI.ts:52](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L52)
`Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultAny`](../README.md#searchresultany)\>\> `Protected` **search**(`params`): `Promise`<[`SearchResults`](../interfaces/SearchResults.md)<[`SearchResultAny`](../README.md#searchresultany)\>\>
@ -283,7 +283,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:53](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L53) [lib/search/SearchAPI.ts:53](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L53)
___ ___
@ -303,4 +303,4 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L38) [lib/search/SearchAPI.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L38)

View File

@ -45,7 +45,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -63,7 +63,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -81,7 +81,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -108,7 +108,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -131,7 +131,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -151,7 +151,7 @@ ___
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L22) [lib/show/ShowAPI.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L22)
___ ___
@ -171,4 +171,4 @@ ___
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L35) [lib/show/ShowAPI.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L35)

View File

@ -48,7 +48,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -66,7 +66,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -84,7 +84,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -111,7 +111,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -134,7 +134,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -154,7 +154,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L38) [lib/tag/TagAPI.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L38)
___ ___
@ -174,7 +174,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L33) [lib/tag/TagAPI.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L33)
___ ___
@ -194,7 +194,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:55](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L55) [lib/tag/TagAPI.ts:55](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L55)
___ ___
@ -214,7 +214,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:49](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L49) [lib/tag/TagAPI.ts:49](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L49)
___ ___
@ -228,4 +228,4 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:28](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L28) [lib/tag/TagAPI.ts:28](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L28)

View File

@ -44,7 +44,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L12) [lib/common/BaseAPIWithImageSupport.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L12)
## Accessors ## Accessors
@ -62,7 +62,7 @@ BaseAPIWithImageSupport.cache
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L25) [lib/common/BaseAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L25)
___ ___
@ -80,7 +80,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L17) [lib/common/BaseAPIWithImageSupport.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L17)
## Methods ## Methods
@ -107,7 +107,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L19) [lib/common/BaseAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L19)
`Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\> `Protected` **fetch**(`url`, `jsonResponse?`, `method?`, `payload?`): `Promise`<`string`\>
@ -130,7 +130,7 @@ BaseAPIWithImageSupport.imageAPI
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L20) [lib/common/BaseAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L20)
___ ___
@ -150,4 +150,4 @@ ___
#### Defined in #### Defined in
[lib/track/TrackAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/track/TrackAPI.ts#L15) [lib/track/TrackAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/track/TrackAPI.ts#L15)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L10) [lib/autocomplete/AutocompleteAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L10)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L9) [lib/autocomplete/AutocompleteAPI.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L9)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/utils/Cache.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L5) [lib/utils/Cache.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L5)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/utils/Cache.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Cache.ts#L4) [lib/utils/Cache.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Cache.ts#L4)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L6) [lib/utils/Fetcher.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L6)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L7) [lib/utils/Fetcher.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L7)

View File

@ -19,7 +19,7 @@ Album image formats
#### Defined in #### Defined in
[lib/image/ImageAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/image/ImageAPI.ts#L10) [lib/image/ImageAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/image/ImageAPI.ts#L10)
___ ___
@ -31,4 +31,4 @@ Artist / Profile image formats
#### Defined in #### Defined in
[lib/image/ImageAPI.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/image/ImageAPI.ts#L12) [lib/image/ImageAPI.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/image/ImageAPI.ts#L12)

View File

@ -20,7 +20,7 @@
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L12) [lib/search/SearchAPI.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L12)
___ ___
@ -30,7 +30,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L10) [lib/search/SearchAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L10)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L11) [lib/search/SearchAPI.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L11)
___ ___
@ -50,7 +50,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L14) [lib/search/SearchAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L14)
___ ___
@ -60,4 +60,4 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L13) [lib/search/SearchAPI.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L13)

View File

@ -42,7 +42,7 @@
#### Defined in #### Defined in
[lib/types/MediaKind.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L10) [lib/types/MediaKind.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L10)
___ ___
@ -52,7 +52,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L8) [lib/types/Album.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L8)
___ ___
@ -62,7 +62,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L11) [lib/types/Album.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L11)
___ ___
@ -72,7 +72,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L9) [lib/types/Album.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L9)
___ ___
@ -86,7 +86,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L8) [lib/types/MediaKind.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L8)
___ ___
@ -96,7 +96,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L7) [lib/types/Album.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L7)
___ ___
@ -110,7 +110,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L11) [lib/types/MediaKind.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L11)
___ ___
@ -120,7 +120,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L10) [lib/types/Album.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L10)
___ ___
@ -134,7 +134,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L6) [lib/types/MediaKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L6)
___ ___
@ -144,7 +144,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L6) [lib/types/Album.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L6)
___ ___
@ -158,7 +158,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L12) [lib/types/MediaKind.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L12)
___ ___
@ -179,7 +179,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L13) [lib/types/MediaKind.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L13)
___ ___
@ -193,7 +193,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L9) [lib/types/MediaKind.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L9)
___ ___
@ -203,7 +203,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L12) [lib/types/Album.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L12)
___ ___
@ -213,7 +213,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L13) [lib/types/Album.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L13)
___ ___
@ -223,7 +223,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L5) [lib/types/Album.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L5)
___ ___
@ -237,4 +237,4 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L7) [lib/types/MediaKind.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L7)

View File

@ -19,7 +19,7 @@
#### Defined in #### Defined in
[lib/album/AlbumAPI.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/album/AlbumAPI.ts#L9) [lib/album/AlbumAPI.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/album/AlbumAPI.ts#L9)
___ ___
@ -29,7 +29,7 @@ ___
#### Defined in #### Defined in
[lib/album/AlbumAPI.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/album/AlbumAPI.ts#L8) [lib/album/AlbumAPI.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/album/AlbumAPI.ts#L8)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/album/AlbumAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/album/AlbumAPI.ts#L10) [lib/album/AlbumAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/album/AlbumAPI.ts#L10)
___ ___
@ -49,4 +49,4 @@ ___
#### Defined in #### Defined in
[lib/album/AlbumAPI.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/album/AlbumAPI.ts#L11) [lib/album/AlbumAPI.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/album/AlbumAPI.ts#L11)

View File

@ -18,7 +18,7 @@
#### Defined in #### Defined in
[lib/types/Tag.ts:23](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L23) [lib/types/Tag.ts:23](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L23)
___ ___
@ -28,7 +28,7 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L21) [lib/types/Tag.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L21)
___ ___
@ -38,4 +38,4 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L22) [lib/types/Tag.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L22)

View File

@ -20,7 +20,7 @@
#### Defined in #### Defined in
[lib/types/Album.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L21) [lib/types/Album.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L21)
___ ___
@ -30,7 +30,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L18) [lib/types/Album.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L18)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L20) [lib/types/Album.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L20)
___ ___
@ -50,7 +50,7 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L17) [lib/types/Album.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L17)
___ ___
@ -60,4 +60,4 @@ ___
#### Defined in #### Defined in
[lib/types/Album.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Album.ts#L19) [lib/types/Album.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Album.ts#L19)

View File

@ -33,7 +33,7 @@
#### Defined in #### Defined in
[lib/types/Article.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L16) [lib/types/Article.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L16)
___ ___
@ -43,7 +43,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L10) [lib/types/Article.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L10)
___ ___
@ -53,7 +53,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L9) [lib/types/Article.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L9)
___ ___
@ -63,7 +63,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L6) [lib/types/Article.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L6)
___ ___
@ -81,7 +81,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L11) [lib/types/Article.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L11)
___ ___
@ -91,7 +91,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L8) [lib/types/Article.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L8)
___ ___
@ -101,7 +101,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L20) [lib/types/Article.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L20)
___ ___
@ -119,7 +119,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L22) [lib/types/Article.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L22)
___ ___
@ -129,7 +129,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L21) [lib/types/Article.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L21)
___ ___
@ -139,7 +139,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L5) [lib/types/Article.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L5)
___ ___
@ -149,4 +149,4 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L7) [lib/types/Article.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L7)

View File

@ -19,7 +19,7 @@
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L13) [lib/article/ArticleAPI.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L13)
___ ___
@ -29,7 +29,7 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L12) [lib/article/ArticleAPI.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L12)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L14) [lib/article/ArticleAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L14)
___ ___
@ -49,4 +49,4 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L15) [lib/article/ArticleAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L15)

View File

@ -18,7 +18,7 @@
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L19) [lib/article/ArticleAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L19)
___ ___
@ -28,7 +28,7 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L20) [lib/article/ArticleAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L20)
___ ___
@ -38,4 +38,4 @@ ___
#### Defined in #### Defined in
[lib/article/ArticleAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/article/ArticleAPI.ts#L21) [lib/article/ArticleAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/article/ArticleAPI.ts#L21)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/types/Article.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L30) [lib/types/Article.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L30)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L31) [lib/types/Article.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L31)

View File

@ -19,7 +19,7 @@
#### Defined in #### Defined in
[lib/types/Article.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L38) [lib/types/Article.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L38)
___ ___
@ -29,7 +29,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L35) [lib/types/Article.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L35)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L37) [lib/types/Article.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L37)
___ ___
@ -49,4 +49,4 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:36](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L36) [lib/types/Article.ts:36](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L36)

View File

@ -19,7 +19,7 @@
#### Defined in #### Defined in
[lib/types/Article.ts:57](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L57) [lib/types/Article.ts:57](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L57)
___ ___
@ -29,7 +29,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:60](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L60) [lib/types/Article.ts:60](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L60)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:59](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L59) [lib/types/Article.ts:59](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L59)
___ ___
@ -49,4 +49,4 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:58](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L58) [lib/types/Article.ts:58](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L58)

View File

@ -20,7 +20,7 @@
#### Defined in #### Defined in
[lib/types/Article.ts:67](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L67) [lib/types/Article.ts:67](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L67)
___ ___
@ -30,7 +30,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:66](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L66) [lib/types/Article.ts:66](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L66)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:68](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L68) [lib/types/Article.ts:68](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L68)
___ ___
@ -50,7 +50,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:65](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L65) [lib/types/Article.ts:65](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L65)
___ ___
@ -60,4 +60,4 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:64](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L64) [lib/types/Article.ts:64](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L64)

View File

@ -26,7 +26,7 @@
#### Defined in #### Defined in
[lib/types/Article.ts:42](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L42) [lib/types/Article.ts:42](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L42)
___ ___
@ -36,7 +36,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:46](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L46) [lib/types/Article.ts:46](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L46)
___ ___
@ -46,7 +46,7 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:48](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L48) [lib/types/Article.ts:48](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L48)
___ ___
@ -56,4 +56,4 @@ ___
#### Defined in #### Defined in
[lib/types/Article.ts:47](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Article.ts#L47) [lib/types/Article.ts:47](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Article.ts#L47)

View File

@ -33,7 +33,7 @@
#### Defined in #### Defined in
[lib/types/UserKind.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L3) [lib/types/UserKind.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L3)
___ ___
@ -43,7 +43,7 @@ ___
#### Defined in #### Defined in
[lib/types/Artist.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Artist.ts#L7) [lib/types/Artist.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Artist.ts#L7)
___ ___
@ -57,7 +57,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L5) [lib/types/UserKind.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L5)
___ ___
@ -67,7 +67,7 @@ ___
#### Defined in #### Defined in
[lib/types/Artist.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Artist.ts#L6) [lib/types/Artist.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Artist.ts#L6)
___ ___
@ -81,7 +81,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L6) [lib/types/UserKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L6)
___ ___
@ -95,7 +95,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L2) [lib/types/UserKind.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L2)
___ ___
@ -105,7 +105,7 @@ ___
#### Defined in #### Defined in
[lib/types/Artist.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Artist.ts#L5) [lib/types/Artist.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Artist.ts#L5)
___ ___
@ -119,4 +119,4 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L4) [lib/types/UserKind.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L4)

View File

@ -25,7 +25,7 @@
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L8) [lib/types/Autocomplete.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L8)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L3) [lib/types/Autocomplete.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L3)
___ ___
@ -53,7 +53,7 @@ ___
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L7) [lib/types/Autocomplete.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L7)
___ ___
@ -63,4 +63,4 @@ ___
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L9) [lib/types/Autocomplete.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L9)

View File

@ -18,7 +18,7 @@
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L15) [lib/autocomplete/AutocompleteAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L15)
___ ___
@ -28,7 +28,7 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L16) [lib/autocomplete/AutocompleteAPI.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L16)
___ ___
@ -38,4 +38,4 @@ ___
#### Defined in #### Defined in
[lib/autocomplete/AutocompleteAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/autocomplete/AutocompleteAPI.ts#L14) [lib/autocomplete/AutocompleteAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/autocomplete/AutocompleteAPI.ts#L14)

View File

@ -25,7 +25,7 @@
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L3) [lib/types/Autocomplete.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L3)
___ ___
@ -35,4 +35,4 @@ ___
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L2) [lib/types/Autocomplete.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L2)

View File

@ -25,7 +25,7 @@
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L14) [lib/types/Autocomplete.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L14)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L3) [lib/types/Autocomplete.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L3)
___ ___
@ -53,7 +53,7 @@ ___
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L13) [lib/types/Autocomplete.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L13)
___ ___
@ -63,4 +63,4 @@ ___
#### Defined in #### Defined in
[lib/types/Autocomplete.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Autocomplete.ts#L15) [lib/types/Autocomplete.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Autocomplete.ts#L15)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/band/BandAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L14) [lib/band/BandAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L14)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L15) [lib/band/BandAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L15)

View File

@ -18,7 +18,7 @@
#### Defined in #### Defined in
[lib/band/BandAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L19) [lib/band/BandAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L19)
___ ___
@ -28,7 +28,7 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L20) [lib/band/BandAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L20)
___ ___
@ -38,4 +38,4 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L21) [lib/band/BandAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L21)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/band/BandAPI.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L26) [lib/band/BandAPI.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L26)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/band/BandAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/band/BandAPI.ts#L25) [lib/band/BandAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/band/BandAPI.ts#L25)

View File

@ -16,4 +16,4 @@
#### Defined in #### Defined in
[lib/BandcampFetch.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/BandcampFetch.ts#L18) [lib/BandcampFetch.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/BandcampFetch.ts#L18)

View File

@ -23,7 +23,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L6) [lib/common/BaseAPI.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L6)
___ ___
@ -33,4 +33,4 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L5) [lib/common/BaseAPI.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L5)

View File

@ -28,7 +28,7 @@
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L6) [lib/common/BaseAPI.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L6)
___ ___
@ -42,7 +42,7 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPI.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPI.ts#L5) [lib/common/BaseAPI.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPI.ts#L5)
___ ___
@ -52,4 +52,4 @@ ___
#### Defined in #### Defined in
[lib/common/BaseAPIWithImageSupport.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/common/BaseAPIWithImageSupport.ts#L5) [lib/common/BaseAPIWithImageSupport.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/common/BaseAPIWithImageSupport.ts#L5)

View File

@ -28,7 +28,7 @@ DiscoveryAPI.getAvailableOptions
#### Defined in #### Defined in
[lib/types/Discovery.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L17) [lib/types/Discovery.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L17)
___ ___
@ -38,7 +38,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L16) [lib/types/Discovery.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L16)
___ ___
@ -48,7 +48,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L11) [lib/types/Discovery.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L11)
___ ___
@ -58,7 +58,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L15) [lib/types/Discovery.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L15)
___ ___
@ -68,7 +68,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L12) [lib/types/Discovery.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L12)
___ ___
@ -78,7 +78,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L14) [lib/types/Discovery.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L14)
___ ___
@ -88,4 +88,4 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L13) [lib/types/Discovery.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L13)

View File

@ -33,7 +33,7 @@ Value indicating the image format to adopt when constructing image URLs of disco
#### Defined in #### Defined in
[lib/types/Discovery.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L37) [lib/types/Discovery.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L37)
___ ___
@ -45,7 +45,7 @@ Value indicating the image format to adopt when constructing image URLs of album
#### Defined in #### Defined in
[lib/types/Discovery.ts:41](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L41) [lib/types/Discovery.ts:41](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L41)
___ ___
@ -55,7 +55,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L33) [lib/types/Discovery.ts:33](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L33)
___ ___
@ -65,7 +65,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:32](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L32) [lib/types/Discovery.ts:32](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L32)
___ ___
@ -75,7 +75,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L26) [lib/types/Discovery.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L26)
___ ___
@ -85,7 +85,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L31) [lib/types/Discovery.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L31)
___ ___
@ -95,7 +95,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:28](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L28) [lib/types/Discovery.ts:28](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L28)
___ ___
@ -105,7 +105,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:27](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L27) [lib/types/Discovery.ts:27](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L27)
___ ___
@ -115,7 +115,7 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L30) [lib/types/Discovery.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L30)
___ ___
@ -125,4 +125,4 @@ ___
#### Defined in #### Defined in
[lib/types/Discovery.ts:29](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L29) [lib/types/Discovery.ts:29](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L29)

View File

@ -22,7 +22,7 @@ List of discovered albums.
#### Defined in #### Defined in
[lib/types/Discovery.ts:51](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L51) [lib/types/Discovery.ts:51](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L51)
___ ___
@ -34,7 +34,7 @@ Sanitized params used in the discovery request.
#### Defined in #### Defined in
[lib/types/Discovery.ts:59](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L59) [lib/types/Discovery.ts:59](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L59)
___ ___
@ -46,4 +46,4 @@ Total number of albums discovered.
#### Defined in #### Defined in
[lib/types/Discovery.ts:55](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Discovery.ts#L55) [lib/types/Discovery.ts:55](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Discovery.ts#L55)

View File

@ -33,7 +33,7 @@
#### Defined in #### Defined in
[lib/types/Fan.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L10) [lib/types/Fan.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L10)
___ ___
@ -47,7 +47,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L3) [lib/types/UserKind.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L3)
___ ___
@ -57,7 +57,7 @@ ___
#### Defined in #### Defined in
[lib/types/Fan.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L8) [lib/types/Fan.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L8)
___ ___
@ -67,7 +67,7 @@ ___
#### Defined in #### Defined in
[lib/types/Fan.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L7) [lib/types/Fan.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L7)
___ ___
@ -81,7 +81,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L5) [lib/types/UserKind.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L5)
___ ___
@ -95,7 +95,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L6) [lib/types/UserKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L6)
___ ___
@ -109,7 +109,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L2) [lib/types/UserKind.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L2)
___ ___
@ -119,7 +119,7 @@ ___
#### Defined in #### Defined in
[lib/types/Fan.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L4) [lib/types/Fan.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L4)
___ ___
@ -133,7 +133,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L4) [lib/types/UserKind.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L4)
___ ___
@ -143,7 +143,7 @@ ___
#### Defined in #### Defined in
[lib/types/Fan.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L5) [lib/types/Fan.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L5)
___ ___
@ -153,7 +153,7 @@ ___
#### Defined in #### Defined in
[lib/types/Fan.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L6) [lib/types/Fan.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L6)
___ ___
@ -163,4 +163,4 @@ ___
#### Defined in #### Defined in
[lib/types/Fan.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L9) [lib/types/Fan.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L9)

View File

@ -17,14 +17,14 @@
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L21) [lib/fan/FanAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L21)
___ ___
### username ### username
**username**: `string` `Optional` **username**: `string`
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L20) [lib/fan/FanAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L20)

View File

@ -17,14 +17,14 @@
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L26) [lib/fan/FanAPI.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L26)
___ ___
### target ### target
**target**: `string` \| [`FanItemsContinuation`](FanItemsContinuation.md) `Optional` **target**: `string` \| [`FanItemsContinuation`](FanItemsContinuation.md)
#### Defined in #### Defined in
[lib/fan/FanAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanAPI.ts#L25) [lib/fan/FanAPI.ts:25](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanAPI.ts#L25)

View File

@ -23,7 +23,7 @@
#### Defined in #### Defined in
[lib/fan/FanItemsBaseParser.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanItemsBaseParser.ts#L22) [lib/fan/FanItemsBaseParser.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanItemsBaseParser.ts#L22)
___ ___
@ -33,4 +33,4 @@ ___
#### Defined in #### Defined in
[lib/fan/FanItemsBaseParser.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanItemsBaseParser.ts#L21) [lib/fan/FanItemsBaseParser.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanItemsBaseParser.ts#L21)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/types/Fan.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L14) [lib/types/Fan.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L14)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/types/Fan.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Fan.ts#L15) [lib/types/Fan.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Fan.ts#L15)

View File

@ -24,7 +24,7 @@
#### Defined in #### Defined in
[lib/fan/FanItemsBaseParser.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanItemsBaseParser.ts#L17) [lib/fan/FanItemsBaseParser.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanItemsBaseParser.ts#L17)
___ ___
@ -34,7 +34,7 @@ ___
#### Defined in #### Defined in
[lib/fan/FanItemsBaseParser.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanItemsBaseParser.ts#L15) [lib/fan/FanItemsBaseParser.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanItemsBaseParser.ts#L15)
___ ___
@ -44,4 +44,4 @@ ___
#### Defined in #### Defined in
[lib/fan/FanItemsBaseParser.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/fan/FanItemsBaseParser.ts#L16) [lib/fan/FanItemsBaseParser.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/fan/FanItemsBaseParser.ts#L16)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L12) [lib/utils/Fetcher.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L12)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/utils/Fetcher.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/Fetcher.ts#L11) [lib/utils/Fetcher.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/Fetcher.ts#L11)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/types/Image.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Image.ts#L10) [lib/types/Image.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Image.ts#L10)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/types/Image.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Image.ts#L11) [lib/types/Image.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Image.ts#L11)

View File

@ -20,7 +20,7 @@
#### Defined in #### Defined in
[lib/types/Image.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Image.ts#L6) [lib/types/Image.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Image.ts#L6)
___ ___
@ -30,7 +30,7 @@ ___
#### Defined in #### Defined in
[lib/types/Image.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Image.ts#L5) [lib/types/Image.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Image.ts#L5)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/types/Image.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Image.ts#L2) [lib/types/Image.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Image.ts#L2)
___ ___
@ -50,7 +50,7 @@ ___
#### Defined in #### Defined in
[lib/types/Image.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Image.ts#L3) [lib/types/Image.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Image.ts#L3)
___ ___
@ -60,4 +60,4 @@ ___
#### Defined in #### Defined in
[lib/types/Image.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Image.ts#L4) [lib/types/Image.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Image.ts#L4)

View File

@ -32,7 +32,7 @@
#### Defined in #### Defined in
[lib/types/UserKind.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L3) [lib/types/UserKind.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L3)
___ ___
@ -46,7 +46,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L5) [lib/types/UserKind.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L5)
___ ___
@ -56,7 +56,7 @@ ___
#### Defined in #### Defined in
[lib/types/Label.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Label.ts#L6) [lib/types/Label.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Label.ts#L6)
___ ___
@ -70,7 +70,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L6) [lib/types/UserKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L6)
___ ___
@ -84,7 +84,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L2) [lib/types/UserKind.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L2)
___ ___
@ -94,7 +94,7 @@ ___
#### Defined in #### Defined in
[lib/types/Label.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Label.ts#L5) [lib/types/Label.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Label.ts#L5)
___ ___
@ -108,4 +108,4 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L4) [lib/types/UserKind.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L4)

View File

@ -31,7 +31,7 @@
#### Defined in #### Defined in
[lib/types/MediaKind.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L10) [lib/types/MediaKind.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L10)
___ ___
@ -41,7 +41,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L8) [lib/types/MediaKind.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L8)
___ ___
@ -51,7 +51,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L11) [lib/types/MediaKind.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L11)
___ ___
@ -61,7 +61,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L6) [lib/types/MediaKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L6)
___ ___
@ -71,7 +71,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L12) [lib/types/MediaKind.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L12)
___ ___
@ -88,7 +88,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L13) [lib/types/MediaKind.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L13)
___ ___
@ -98,7 +98,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L9) [lib/types/MediaKind.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L9)
___ ___
@ -108,4 +108,4 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L7) [lib/types/MediaKind.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L7)

View File

@ -29,7 +29,7 @@
#### Defined in #### Defined in
[lib/utils/NameValuePair.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/NameValuePair.ts#L2) [lib/utils/NameValuePair.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/NameValuePair.ts#L2)
___ ___
@ -39,4 +39,4 @@ ___
#### Defined in #### Defined in
[lib/utils/NameValuePair.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/NameValuePair.ts#L3) [lib/utils/NameValuePair.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/NameValuePair.ts#L3)

View File

@ -18,7 +18,7 @@
#### Defined in #### Defined in
[lib/types/Tag.ts:47](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L47) [lib/types/Tag.ts:47](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L47)
___ ___
@ -28,7 +28,7 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:46](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L46) [lib/types/Tag.ts:46](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L46)
___ ___
@ -38,4 +38,4 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:45](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L45) [lib/types/Tag.ts:45](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L45)

View File

@ -19,7 +19,7 @@
#### Defined in #### Defined in
[lib/types/Tag.ts:39](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L39) [lib/types/Tag.ts:39](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L39)
___ ___
@ -29,4 +29,4 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:40](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L40) [lib/types/Tag.ts:40](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L40)

View File

@ -27,7 +27,7 @@
#### Defined in #### Defined in
[lib/types/Tag.ts:34](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L34) [lib/types/Tag.ts:34](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L34)
___ ___
@ -41,7 +41,7 @@ ___
#### Defined in #### Defined in
[lib/utils/NameValuePair.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/NameValuePair.ts#L2) [lib/utils/NameValuePair.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/NameValuePair.ts#L2)
___ ___
@ -51,7 +51,7 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L35) [lib/types/Tag.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L35)
___ ___
@ -65,4 +65,4 @@ ___
#### Defined in #### Defined in
[lib/utils/NameValuePair.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/utils/NameValuePair.ts#L3) [lib/utils/NameValuePair.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/utils/NameValuePair.ts#L3)

View File

@ -19,7 +19,7 @@
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L20) [lib/search/SearchAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L20)
___ ___
@ -29,7 +29,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L21) [lib/search/SearchAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L21)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L19) [lib/search/SearchAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L19)
___ ___
@ -49,4 +49,4 @@ ___
#### Defined in #### Defined in
[lib/search/SearchAPI.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/search/SearchAPI.ts#L18) [lib/search/SearchAPI.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/search/SearchAPI.ts#L18)

View File

@ -30,7 +30,7 @@
#### Defined in #### Defined in
[lib/types/Search.ts:27](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L27) [lib/types/Search.ts:27](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L27)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:29](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L29) [lib/types/Search.ts:29](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L29)
___ ___
@ -54,7 +54,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L10) [lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L10)
___ ___
@ -68,7 +68,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L8) [lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L8)
___ ___
@ -78,7 +78,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:28](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L28) [lib/types/Search.ts:28](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L28)
___ ___
@ -88,7 +88,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L30) [lib/types/Search.ts:30](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L30)
___ ___
@ -98,7 +98,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L31) [lib/types/Search.ts:31](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L31)
___ ___
@ -112,7 +112,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L26) [lib/types/Search.ts:26](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L26)
___ ___
@ -126,4 +126,4 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L9) [lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L9)

View File

@ -28,7 +28,7 @@
#### Defined in #### Defined in
[lib/types/Search.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L16) [lib/types/Search.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L16)
___ ___
@ -42,7 +42,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L10) [lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L10)
___ ___
@ -52,7 +52,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L15) [lib/types/Search.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L15)
___ ___
@ -66,7 +66,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L8) [lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L8)
___ ___
@ -76,7 +76,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L17) [lib/types/Search.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L17)
___ ___
@ -90,7 +90,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L14) [lib/types/Search.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L14)
___ ___
@ -104,4 +104,4 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L9) [lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L9)

View File

@ -26,7 +26,7 @@
#### Defined in #### Defined in
[lib/types/Search.ts:44](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L44) [lib/types/Search.ts:44](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L44)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L10) [lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L10)
___ ___
@ -54,7 +54,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L8) [lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L8)
___ ___
@ -68,7 +68,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:43](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L43) [lib/types/Search.ts:43](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L43)
___ ___
@ -82,4 +82,4 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L9) [lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L9)

View File

@ -33,7 +33,7 @@
#### Defined in #### Defined in
[lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L10) [lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L10)
___ ___
@ -43,7 +43,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L8) [lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L8)
___ ___
@ -53,7 +53,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L7) [lib/types/Search.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L7)
___ ___
@ -63,4 +63,4 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L9) [lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L9)

View File

@ -30,7 +30,7 @@
#### Defined in #### Defined in
[lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L10) [lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L10)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L22) [lib/types/Search.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L22)
___ ___
@ -54,7 +54,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L8) [lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L8)
___ ___
@ -68,7 +68,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L21) [lib/types/Search.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L21)
___ ___
@ -82,4 +82,4 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L9) [lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L9)

View File

@ -29,7 +29,7 @@
#### Defined in #### Defined in
[lib/types/Search.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L37) [lib/types/Search.ts:37](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L37)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:36](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L36) [lib/types/Search.ts:36](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L36)
___ ___
@ -53,7 +53,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L10) [lib/types/Search.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L10)
___ ___
@ -67,7 +67,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L8) [lib/types/Search.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L8)
___ ___
@ -77,7 +77,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L38) [lib/types/Search.ts:38](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L38)
___ ___
@ -87,7 +87,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:39](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L39) [lib/types/Search.ts:39](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L39)
___ ___
@ -101,7 +101,7 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L35) [lib/types/Search.ts:35](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L35)
___ ___
@ -115,4 +115,4 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L9) [lib/types/Search.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L9)

View File

@ -23,7 +23,7 @@
#### Defined in #### Defined in
[lib/types/Search.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L2) [lib/types/Search.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L2)
___ ___
@ -33,4 +33,4 @@ ___
#### Defined in #### Defined in
[lib/types/Search.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Search.ts#L3) [lib/types/Search.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Search.ts#L3)

View File

@ -28,7 +28,7 @@
#### Defined in #### Defined in
[lib/types/Show.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L8) [lib/types/Show.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L8)
___ ___
@ -38,7 +38,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L10) [lib/types/Show.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L10)
___ ___
@ -48,7 +48,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L16) [lib/types/Show.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L16)
___ ___
@ -58,7 +58,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L18) [lib/types/Show.ts:18](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L18)
___ ___
@ -68,7 +68,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L5) [lib/types/Show.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L5)
___ ___
@ -78,7 +78,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L7) [lib/types/Show.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L7)
___ ___
@ -88,7 +88,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L19) [lib/types/Show.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L19)
___ ___
@ -98,7 +98,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L9) [lib/types/Show.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L9)
___ ___
@ -115,7 +115,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L11) [lib/types/Show.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L11)
___ ___
@ -125,7 +125,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L17) [lib/types/Show.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L17)
___ ___
@ -135,7 +135,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L15) [lib/types/Show.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L15)
___ ___
@ -145,7 +145,7 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L4) [lib/types/Show.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L4)
___ ___
@ -155,4 +155,4 @@ ___
#### Defined in #### Defined in
[lib/types/Show.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Show.ts#L6) [lib/types/Show.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Show.ts#L6)

View File

@ -19,7 +19,7 @@
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L11) [lib/show/ShowAPI.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L11)
___ ___
@ -29,7 +29,7 @@ ___
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L12) [lib/show/ShowAPI.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L12)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L13) [lib/show/ShowAPI.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L13)
___ ___
@ -49,4 +49,4 @@ ___
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L10) [lib/show/ShowAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L10)

View File

@ -16,4 +16,4 @@
#### Defined in #### Defined in
[lib/show/ShowAPI.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/show/ShowAPI.ts#L17) [lib/show/ShowAPI.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/show/ShowAPI.ts#L17)

View File

@ -22,7 +22,7 @@
#### Defined in #### Defined in
[lib/types/Tag.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L12) [lib/types/Tag.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L12)
___ ___
@ -32,7 +32,7 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L11) [lib/types/Tag.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L11)
___ ___
@ -42,7 +42,7 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L7) [lib/types/Tag.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L7)
___ ___
@ -52,7 +52,7 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L10) [lib/types/Tag.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L10)
___ ___
@ -62,7 +62,7 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L6) [lib/types/Tag.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L6)
___ ___
@ -72,7 +72,7 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L8) [lib/types/Tag.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L8)
___ ___
@ -82,4 +82,4 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L9) [lib/types/Tag.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L9)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L15) [lib/tag/TagAPI.ts:15](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L15)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L14) [lib/tag/TagAPI.ts:14](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L14)

View File

@ -20,7 +20,7 @@
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L22) [lib/tag/TagAPI.ts:22](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L22)
___ ___
@ -30,7 +30,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L20) [lib/tag/TagAPI.ts:20](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L20)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:23](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L23) [lib/tag/TagAPI.ts:23](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L23)
___ ___
@ -50,7 +50,7 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L19) [lib/tag/TagAPI.ts:19](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L19)
___ ___
@ -60,4 +60,4 @@ ___
#### Defined in #### Defined in
[lib/tag/TagAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/tag/TagAPI.ts#L21) [lib/tag/TagAPI.ts:21](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/tag/TagAPI.ts#L21)

View File

@ -17,7 +17,7 @@
#### Defined in #### Defined in
[lib/types/Tag.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L17) [lib/types/Tag.ts:17](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L17)
___ ___
@ -27,4 +27,4 @@ ___
#### Defined in #### Defined in
[lib/types/Tag.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Tag.ts#L16) [lib/types/Tag.ts:16](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Tag.ts#L16)

View File

@ -24,6 +24,7 @@
- [releaseDate](Track.md#releasedate) - [releaseDate](Track.md#releasedate)
- [seekPosition](Track.md#seekposition) - [seekPosition](Track.md#seekposition)
- [streamUrl](Track.md#streamurl) - [streamUrl](Track.md#streamurl)
- [streamUrlHQ](Track.md#streamurlhq)
- [type](Track.md#type) - [type](Track.md#type)
- [url](Track.md#url) - [url](Track.md#url)
@ -35,7 +36,7 @@
#### Defined in #### Defined in
[lib/types/Track.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Track.ts#L9) [lib/types/Track.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Track.ts#L10)
___ ___
@ -49,7 +50,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L10) [lib/types/MediaKind.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L10)
___ ___
@ -59,7 +60,7 @@ ___
#### Defined in #### Defined in
[lib/types/Track.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Track.ts#L6) [lib/types/Track.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Track.ts#L6)
___ ___
@ -73,7 +74,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L8) [lib/types/MediaKind.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L8)
___ ___
@ -87,7 +88,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L11) [lib/types/MediaKind.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L11)
___ ___
@ -101,7 +102,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L6) [lib/types/MediaKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L6)
___ ___
@ -111,7 +112,7 @@ ___
#### Defined in #### Defined in
[lib/types/Track.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Track.ts#L10) [lib/types/Track.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Track.ts#L11)
___ ___
@ -125,7 +126,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L12) [lib/types/MediaKind.ts:12](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L12)
___ ___
@ -146,7 +147,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L13) [lib/types/MediaKind.ts:13](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L13)
___ ___
@ -160,7 +161,7 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L9) [lib/types/MediaKind.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L9)
___ ___
@ -170,7 +171,7 @@ ___
#### Defined in #### Defined in
[lib/types/Track.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Track.ts#L7) [lib/types/Track.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Track.ts#L7)
___ ___
@ -180,7 +181,17 @@ ___
#### Defined in #### Defined in
[lib/types/Track.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Track.ts#L8) [lib/types/Track.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Track.ts#L8)
___
### streamUrlHQ
`Optional` **streamUrlHQ**: `string`
#### Defined in
[lib/types/Track.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Track.ts#L9)
___ ___
@ -190,7 +201,7 @@ ___
#### Defined in #### Defined in
[lib/types/Track.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/Track.ts#L5) [lib/types/Track.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/Track.ts#L5)
___ ___
@ -204,4 +215,4 @@ ___
#### Defined in #### Defined in
[lib/types/MediaKind.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/MediaKind.ts#L7) [lib/types/MediaKind.ts:7](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/MediaKind.ts#L7)

View File

@ -19,7 +19,7 @@
#### Defined in #### Defined in
[lib/track/TrackAPI.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/track/TrackAPI.ts#L9) [lib/track/TrackAPI.ts:9](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/track/TrackAPI.ts#L9)
___ ___
@ -29,7 +29,7 @@ ___
#### Defined in #### Defined in
[lib/track/TrackAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/track/TrackAPI.ts#L10) [lib/track/TrackAPI.ts:10](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/track/TrackAPI.ts#L10)
___ ___
@ -39,7 +39,7 @@ ___
#### Defined in #### Defined in
[lib/track/TrackAPI.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/track/TrackAPI.ts#L11) [lib/track/TrackAPI.ts:11](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/track/TrackAPI.ts#L11)
___ ___
@ -49,4 +49,4 @@ ___
#### Defined in #### Defined in
[lib/track/TrackAPI.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/track/TrackAPI.ts#L8) [lib/track/TrackAPI.ts:8](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/track/TrackAPI.ts#L8)

View File

@ -30,7 +30,7 @@
#### Defined in #### Defined in
[lib/types/UserKind.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L3) [lib/types/UserKind.ts:3](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L3)
___ ___
@ -40,7 +40,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L5) [lib/types/UserKind.ts:5](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L5)
___ ___
@ -50,7 +50,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L6) [lib/types/UserKind.ts:6](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L6)
___ ___
@ -60,7 +60,7 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L2) [lib/types/UserKind.ts:2](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L2)
___ ___
@ -70,4 +70,4 @@ ___
#### Defined in #### Defined in
[lib/types/UserKind.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/19ec315/src/lib/types/UserKind.ts#L4) [lib/types/UserKind.ts:4](https://github.com/patrickkfkan/bandcamp-fetch/blob/7815c68/src/lib/types/UserKind.ts#L4)