TobyG74 / tiktok-api-dl

Scrapper for download Video, Image, Music from Tiktok
Apache License 2.0
69 stars 18 forks source link

Tiktok.downloader is not a function #17

Closed anpinghuang closed 5 months ago

anpinghuang commented 5 months ago

image

TobyG74 commented 5 months ago

I think there was an error compiling the typescript. Because when you try export default it always becomes the default object.

You can use it like this:

import TikAPI from "@tobyg74/tiktok-api-dl"
const { default: Tiktok } = TikAPI
...

Or you can use the Tiktok object directly

import { Tiktok } from "@tobyg74/tiktok-api-dl"
...