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.

8 lines 231 B
interface ExtractedContent { title: string; content: string; htmlContent: string; } export declare function extractTextContent(html: string): Promise<ExtractedContent>; export {}; //# sourceMappingURL=extractor.d.ts.map