tb-tiktok-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) • 392 B
TypeScript
export type TiktokUserSearchResponse = {
status: "success" | "error";
message?: string;
result?: Result[];
page?: number;
totalResults?: number;
};
export type Result = {
uid: string;
username: string;
nickname: string;
signature: string;
avatarThumb: string;
followerCount: number;
isVerified: boolean;
secUid: string;
url: string;
};