Measure all rects for embeds

This commit is contained in:
Dan Abramov
2024-11-07 01:59:10 +00:00
parent a6d009d06b
commit a3b037af5c
7 changed files with 49 additions and 22 deletions
@@ -6,6 +6,8 @@
*
*/
import {MeasuredDimensions} from 'react-native-reanimated'
export type Dimensions = {
width: number
height: number
@@ -19,6 +21,7 @@ export type Position = {
export type ImageSource = {
uri: string
thumbUri: string
thumbRect: MeasuredDimensions | null
alt?: string
dimensions: Dimensions | null
type: 'image' | 'circle-avi' | 'rect-avi'