File size: 280 Bytes
12ba1bc
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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';
}