src/star-search/dtos/bing-search-results.dto.ts
Properties |
| datePublished |
Type : string
|
| displayUrl |
Type : string
|
| snippet |
Type : string
|
| title |
Type : string
|
| url |
Type : string
|
export class BingSearchResultDto {
title: string;
url: string;
displayUrl: string;
snippet: string;
datePublished: string;
}