UNPKG

@mtatko/tiktok-scraper

Version:

TikTok Scraper & Downloader. Scrape information from User, Trending and HashTag pages and download video posts

12 lines (11 loc) 247 B
import { ScrapeType } from '.'; export interface HistoryItem { type: ScrapeType; input: string; downloaded_posts: number; last_change: Date; file_location: string; } export interface History { [key: string]: HistoryItem; }