UNPKG

article-summarizer-jp

Version:

CLI tool for summarizing web articles in Japanese using Anthropic Claude API. Fetches content from URLs and generates both 3-line summaries and full translations in polite Japanese.

9 lines 275 B
interface FetchResult { title: string; content: string; extractedUrl: string; htmlContent: string; } export declare function fetchContent(url: string, isSilent?: boolean, debug?: boolean): Promise<FetchResult>; export {}; //# sourceMappingURL=fetcher.d.ts.map