ddg-bulk-image-downloader
Version:
Lazy way to download images from Duck Duck Go search results in bulk
23 lines (22 loc) • 816 B
TypeScript
import { Command, flags } from "@oclif/command";
declare class DdgBulkImageDownloader extends Command {
static description: string;
static flags: {
version: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
query: flags.IOptionFlag<string | undefined>;
limit: import("@oclif/parser/lib/flags").IOptionFlag<number>;
output: flags.IOptionFlag<string | undefined>;
size: flags.IOptionFlag<string>;
type: flags.IOptionFlag<string>;
layout: flags.IOptionFlag<string>;
color: flags.IOptionFlag<string>;
};
static args: {
name: string;
}[];
static usage: string;
static examples: string[];
run(): Promise<void>;
}
export = DdgBulkImageDownloader;