dist / services / ingestion / web.d.ts

export declare function extractWebContent(url: string, contentLimit?: number): Promise<{
    title: string;
    content: string;
    byline?: undefined;
    siteName?: undefined;
} | {
    title: string;
    content: string;
    byline: string | null | undefined;
    siteName: string | null | undefined;
}>;