web_reader / src /services /serp /compat.ts
nomagick's picture
feat: serp endpoint (#1180)
12ba1bc unverified
raw
history blame contribute delete
280 Bytes
export interface WebSearchEntry {
link: string;
title: string;
source?: string;
date?: string;
snippet?: string;
imageUrl?: string;
siteLinks?: {
link: string; title: string; snippet?: string;
}[];
variant?: 'web' | 'images' | 'news';
}