@mtatko/tiktok-scraper
Version:
TikTok Scraper & Downloader. Scrape information from User, Trending and HashTag pages and download video posts
19 lines (18 loc) • 447 B
TypeScript
import { CookieJar } from 'request';
import { PostCollector, Headers } from '.';
export interface DownloaderConstructor {
progress: boolean;
proxy: string[] | string;
noWaterMark: boolean;
headers: Headers;
filepath: string;
bulk: boolean;
cookieJar: CookieJar;
}
export interface DownloadParams {
zip: boolean;
folder: string;
collector: PostCollector[];
fileName: string;
asyncDownload: number;
}