UNPKG
animapi
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Animapi adalah library scrapper anime streaming dengan sangat cepat dan mudah digunakan.
animapi
/
test.ts
19 lines
(15 loc)
•
274 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import
{
Otakudesu
}
from
"."
;
const
otakudesu =
new
Otakudesu
(); (
async
() => {
/** *
@return
* { * hasNext: true * animes: [...] * } */
const
res =
await
otakudesu.
search
({
filter
: {
keyword
:
"kimetsu"
}, });
console
.
log
(res); })();