UNPKG

tb-tiktok-dl

Version:

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

29 lines (28 loc) 615 B
export type SSSTikFetchTT = { status: "success" | "error"; message?: string; result?: string; }; export type SSSTikResponse = { status: "success" | "error"; message?: string; result?: { type: "image" | "video" | "music"; desc?: string; author?: Author; statistics?: Statistics; images?: string[]; video?: string; music?: string; direct?: string; }; }; export type Author = { avatar: string; nickname: string; }; export type Statistics = { likeCount: string; commentCount: string; shareCount: string; };