File

src/star-search/interfaces/bing-search-result.interface.ts

Index

Properties

Properties

datePublished
datePublished: string
Type : string
Optional
displayUrl
displayUrl: string
Type : string
Optional
name
name: string
Type : string
snippet
snippet: string
Type : string
url
url: string
Type : string
export interface BingSearchResponse {
  webPages: BingWebPages;
}

export interface BingWebPages {
  value: BingWebPageResult[];
}

export interface BingWebPageResult {
  name: string;
  url: string;
  displayUrl?: string;
  snippet: string;
  datePublished?: string;
}

results matching ""

    No results matching ""