tiktermux
Version:
Scraper for downloading media in the form of videos, images and audio from Tiktok. Also for stalking Tiktok Users
32 lines (31 loc) • 700 B
TypeScript
export type TiktokUserFavoriteVideosResponse = {
status: "success" | "error";
message?: string;
result?: Favorites[];
};
export type Favorites = {
author: Author;
stats: Statistics;
};
export type Author = {
id: string;
username: string;
nickname: string;
avatarLarger: string;
avatarThumb: string;
avatarMedium: string;
signature: string;
verified: string;
openFavorite: string;
privateAccount: string;
isADVirtual: string;
isEmbedBanned: string;
};
export type Statistics = {
likeCount: string;
followerCount: string;
followingCount: string;
friendCount: string;
heartCount: string;
postsCount: string;
};