Skip to content

Commit

Permalink
fix(types): add logo and icon properties and made language property L…
Browse files Browse the repository at this point in the history
…anguage type (#18043)

Co-authored-by: rjnishant530 <singhnisant530@gmail.com>
  • Loading branch information
Rjnishant530 and rjnishant530 authored Jan 4, 2025
1 parent ad0876c commit 1acceff
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export type DataItem = {
image?: string;
banner?: string;
updated?: number | string | Date;
language?: string;
language?: Language;
enclosure_url?: string;
enclosure_type?: string;
enclosure_title?: string;
Expand All @@ -78,14 +78,15 @@ export type Data = {
allowEmpty?: boolean;
image?: string;
author?: string;
language?: string;
language?: Language;
feedLink?: string;
lastBuildDate?: string;
itunes_author?: string;
itunes_category?: string;
itunes_explicit?: string | boolean;
id?: string;

icon?: string;
logo?: string;
atomlink?: string;
ttl?: number;
};
Expand Down

0 comments on commit 1acceff

Please sign in to comment.