UNPKG
@toplast/lastfm
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.11
0.0.7
0.0.6
0.0.4
0.0.3
0.0.2
0.0.1
A typed Last.fm API client for Node.js
github.com/castilh0s/lastfm
castilh0s/lastfm
@toplast/lastfm
/
lib
/
lastfm.d.ts
9 lines
(8 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Tag
}
from
"./modules/tag/tag.service"
;
import
{
User
}
from
"./modules/user/user.service"
;
export
default
class
LastFm
{
readonly
user
:
User
;
readonly
tag
:
Tag
;
private
readonly
API_KEY
;
constructor
(
API_KEY
:
string
); }