@kareemaly/researcher
Version:
CLI tool for web research
38 lines (37 loc) • 798 B
TypeScript
export interface ProcessedContent {
url: string;
timestamp: Date;
formats: {
html?: string;
markdown?: string;
text?: string;
};
metadata: {
title?: string;
author?: string;
datePublished?: Date;
wordCount?: number;
description?: string;
keywords?: string[];
language?: string;
};
}
export interface ContentMetadata {
url: string;
timestamp: string;
title: string;
formats: {
html: string;
markdown: string;
text: string;
};
processingTimeMs: number;
metadata: {
author?: string;
datePublished?: string;
wordCount: number;
description?: string;
keywords?: string[];
language?: string;
};
}