···15 $type: 'social.grain.photo'
16 photo: BlobRef
17 /** Alt text description of the image, for accessibility. */
18- alt: string
19- aspectRatio?: SocialGrainDefs.AspectRatio
20- createdAt?: string
21 [k: string]: unknown
22}
23
···15 $type: 'social.grain.photo'
16 photo: BlobRef
17 /** Alt text description of the image, for accessibility. */
18+ alt?: string
19+ aspectRatio: SocialGrainDefs.AspectRatio
20+ createdAt: string
21 [k: string]: unknown
22}
23
+2-2
__generated__/types/social/grain/photo/defs.ts
···24 /** Fully-qualified URL where a large version of the image can be fetched. May or may not be the exact original blob. For example, CDN location provided by the App View. */
25 fullsize: string
26 /** Alt text description of the image, for accessibility. */
27- alt: string
28- aspectRatio?: SocialGrainDefs.AspectRatio
29 exif?: ExifView
30 gallery?: GalleryState
31}
···24 /** Fully-qualified URL where a large version of the image can be fetched. May or may not be the exact original blob. For example, CDN location provided by the App View. */
25 fullsize: string
26 /** Alt text description of the image, for accessibility. */
27+ alt?: string
28+ aspectRatio: SocialGrainDefs.AspectRatio
29 exif?: ExifView
30 gallery?: GalleryState
31}