UNPKG

twdl

Version:

Downloads image and video tweets from Twitter

17 lines (16 loc) 811 B
import { AllOptions } from '../options.js'; import { CommandModule } from 'yargs'; export declare function loadUrls(argv: Partial<AllOptions>): string[]; export interface ProcessStatus { exitError?: Error; exitCode: number; } export declare function checkUrls(argv: Partial<AllOptions>): void; export declare function reportUrls(argv: Partial<AllOptions>): void; export declare function applyCookie(argv: Partial<AllOptions>): void; export declare function parseScrapers(argv: Partial<AllOptions>): void; export declare function debugError(isDebug: boolean, err: Error): void; export declare function exitWithCode(): void; export declare function getImportPath(): string; export declare function checkForUpdates(): void; export declare function getCommand(module: CommandModule): any[];