UNPKG

xenforo-dl

Version:
18 lines 546 B
import { DownloaderOptions } from '../lib/DownloaderOptions.js'; import { LogLevel } from '../lib/utils/logging/Logger.js'; export interface CLIOptions extends Omit<DownloaderOptions, 'dirStructure' | 'logger'> { url: string; noPrompt: boolean; dirStructure: string; logging: { level: LogLevel; file?: string; }; continue: boolean; } export interface CLIOptionParserEntry { key: string; value?: string; } export declare function getCLIOptions(): CLIOptions; //# sourceMappingURL=CLIOptions.d.ts.map