xenforo-dl
Version:
XenForo Forum Downloader
18 lines • 546 B
TypeScript
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