ddg-bulk-image-downloader
Version:
Lazy way to download images from Duck Duck Go search results in bulk
47 lines (46 loc) • 1.06 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Color = exports.Layout = exports.Type = exports.Size = void 0;
exports.Size = ["Small", "Medium", "Large", "Wallpaper"];
exports.Type = ["photo", "clipart", "gif", "transparent"];
exports.Layout = ["Square", "Tall", "Wide"];
exports.Color = [
"color",
"Monochrome",
"Red",
"Orange",
"Yellow",
"Green",
"Blue",
"Purple",
"Pink",
"Brown",
"Black",
"Gray",
"Teal",
"White",
];
// export type Size = 'Small' | 'Medium' | 'Large' | 'Wallpaper';
// export type Type = 'photo' | 'clipart' | 'gif' | 'transparent';
// export type Layout = 'Square' | 'Tall' | 'Wide';
// export type Color =
// 'color' |
// 'Monochrome' |
// 'Red' |
// 'Orange' |
// 'Yellow' |
// 'Green' |
// 'Blue' |
// 'Purple' |
// 'Pink' |
// 'Brown' |
// 'Black' |
// 'Gray' |
// 'Teal' |
// 'White'
// export interface ImageFilterOption {
// size?: Size;
// type?: Type;
// layout?: Layout;
// color?: Color;
// }