Skip to content

Commit

Permalink
chore: Allow null for TS definitions about width and height of OpenGr…
Browse files Browse the repository at this point in the history
…aphMedia (#1112)
  • Loading branch information
kelvin9314 committed Dec 3, 2022
1 parent fdf6738 commit 7b2ad73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.ts
Expand Up @@ -155,8 +155,8 @@ export interface ItemListElements {
}
export interface OpenGraphMedia {
url: string;
width?: number;
height?: number;
width?: number | null;
height?: number | null;
alt?: string;
type?: string;
secureUrl?: string;
Expand Down

0 comments on commit 7b2ad73

Please sign in to comment.