@@ -100,26 +100,30 @@ export interface IMusicSong {
100
100
disc : string ;
101
101
}
102
102
export interface IOgObjectMedia {
103
- ogImage : IOgImage | IOgImage [ ] | string ;
104
- ogImageWidth : string [ ] ;
105
- ogImageHeight : string [ ] ;
106
- ogImageType : string [ ] ;
107
- ogVideo : IOgVideo | IOgVideo [ ] | string ;
108
- ogVideoWidth : string [ ] ;
109
- ogVideoHeight : string [ ] ;
110
- ogVideoType : string [ ] ;
111
- twitterImageSrc : string [ ] ;
112
- twitterImage : string [ ] | ITwitterImage | ITwitterImage [ ] ;
113
- twitterImageWidth : string [ ] ;
114
- twitterImageHeight : string [ ] ;
115
- twitterImageAlt : string [ ] ;
116
- twitterPlayer : ITwitterPlayer | ITwitterPlayer [ ] ;
117
- twitterPlayerWidth : string [ ] ;
118
- twitterPlayerHeight : string [ ] ;
119
- twitterPlayerStream : string [ ] ;
120
- musicSong : IMusicSong | IMusicSong [ ] ;
121
- musicSongTrack : string [ ] ;
122
- musicSongDisc : string [ ] ;
103
+ ogTitle ?: string ;
104
+ ogType ?: string ;
105
+ ogUrl ?: string ;
106
+ ogDescription ?: string ;
107
+ ogImage ?: IOgImage | IOgImage [ ] | string | string [ ] ;
108
+ ogImageWidth ?: string [ ] ;
109
+ ogImageHeight ?: string [ ] ;
110
+ ogImageType ?: string [ ] ;
111
+ ogVideo ?: IOgVideo | IOgVideo [ ] | string | string [ ] ;
112
+ ogVideoWidth ?: string [ ] ;
113
+ ogVideoHeight ?: string [ ] ;
114
+ ogVideoType ?: string [ ] ;
115
+ twitterImageSrc ?: string [ ] ;
116
+ twitterImage ?: ITwitterImage | ITwitterImage [ ] | string | string [ ] ;
117
+ twitterImageWidth ?: string [ ] ;
118
+ twitterImageHeight ?: string [ ] ;
119
+ twitterImageAlt ?: string [ ] ;
120
+ twitterPlayer ?: ITwitterPlayer | ITwitterPlayer [ ] | string | string [ ] ;
121
+ twitterPlayerWidth ?: string [ ] ;
122
+ twitterPlayerHeight ?: string [ ] ;
123
+ twitterPlayerStream ?: string [ ] ;
124
+ musicSong ?: IMusicSong | IMusicSong [ ] | string | string [ ] ;
125
+ musicSongTrack ?: string [ ] ;
126
+ musicSongDisc ?: string [ ] ;
123
127
}
124
128
/*
125
129
* media setup
0 commit comments