UNPKG

bookgrabs

Version:

Interactive CLI tool for LibGen ebook searches and downloads with batch processing support

18 lines (17 loc) 330 B
export interface SearchResult { title: string; author: string; year: string; language: string; ext: string; md5: string; } export interface SearchOptions { maxResults?: number; topics?: string[]; objects?: string[]; columns?: string[]; resultsPerPage?: number; fileStatus?: string; language?: string; }