@tobyg74/tiktok-api-dl
Version:
Scraper for downloading media in the form of videos, images and audio from Tiktok. Also for stalking Tiktok Users
9 lines (8 loc) • 467 B
TypeScript
import { TiktokCollectionResponse } from "../../types/get/getCollection";
export declare const getCollection: (collectionId: string, proxy?: string, page?: number, count?: number) => Promise<TiktokCollectionResponse>;
export declare const Collection: (collectionIdOrUrl: string, options?: {
page?: number;
proxy?: string;
count?: number;
}) => Promise<TiktokCollectionResponse>;
export declare const extractCollectionId: (input: string) => string | null;