diff --git a/Libraries/Image/Image.d.ts b/Libraries/Image/Image.d.ts index dd2c089e75a4be..3391ad1f93a265 100644 --- a/Libraries/Image/Image.d.ts +++ b/Libraries/Image/Image.d.ts @@ -254,6 +254,28 @@ export interface ImagePropsBase * See https://reactnative.dev/docs/image#alt */ alt?: string | undefined; + + /** + * Height of the image component. + * + * See https://reactnative.dev/docs/image#height + */ + height?: number | undefined; + + /** + * Width of the image component. + * + * See https://reactnative.dev/docs/image#width + */ + width?: number | undefined; + + /** + * Adds the CORS related header to the request. + * Similar to crossorigin from HTML. + * + * See https://reactnative.dev/docs/image#crossorigin + */ + crossOrigin?: 'anonymous' | 'use-credentials'; } export interface ImageProps extends ImagePropsBase {