UNPKG

@tobyg74/tiktok-api-dl

Version:

Scraper for downloading media in the form of videos, images and audio from Tiktok. Also for stalking Tiktok Users

9 lines (8 loc) 437 B
import { TiktokPlaylistResponse } from "../../types/get/getPlaylist"; export declare const getPlaylist: (playlistId: string, proxy?: string, page?: number, count?: number) => Promise<TiktokPlaylistResponse>; export declare const Playlist: (url: string, options?: { page?: number; proxy?: string; count?: number; }) => Promise<TiktokPlaylistResponse>; export declare const extractPlaylistId: (input: string) => string | null;