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

19 lines (18 loc) 594 B
import { BaseContentResponse, Content, Author, Statistics, Video, Music } from "../common"; export type TiktokAPIResponse = BaseContentResponse; export type AuthorTiktokAPI = Author & { uid: string; username: string; avatarThumb: string; avatarMedium: string; }; export type StatisticsTiktokAPI = Statistics; export type VideoTiktokAPI = Video; export type MusicTiktokAPI = Music; export type ResultTiktokAPI = Content; export type ResponseParserTiktokAPI = { content?: any; statistics?: StatisticsTiktokAPI; author?: AuthorTiktokAPI; music?: MusicTiktokAPI; };