tiktermux
Version:
Scraper for downloading media in the form of videos, images and audio from Tiktok. Also for stalking Tiktok Users
29 lines (28 loc) • 636 B
TypeScript
export type GetMusicalDownReuqest = {
status: "success" | "error";
request?: {
[key: string]: string;
};
message?: string;
cookie?: string;
};
export type MusicalDownResponse = {
status: "success" | "error";
message?: string;
result?: {
type: "video" | "image";
desc?: string;
author?: {
avatar?: string;
nickname?: string;
};
music?: string;
images?: string[];
videoHD?: string;
videoWatermark?: string;
};
};
export type GetMusicalDownMusic = {
status: "success" | "error";
result?: string;
};