UNPKG

@tobyg74/tiktok-api-dl

Version:

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

14 lines (13 loc) 277 B
export interface Cookie { name: string; value: string; domain?: string; path?: string; expires?: Date; secure?: boolean; } export interface ICookieManager { getCookie(): string | null; setCookie(value: string): void; deleteCookie(): void; }