UNPKG

@promptbook/google

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

19 lines (18 loc) 393 B
import type { string_url } from '../types/typeAliases'; /** * Represents a search result from a search engine. */ export type SearchResult = { /** * The title of the search result. */ title: string; /** * The URL of the search result. */ url: string_url; /** * A short snippet or description of the search result. */ snippet: string; };