From 37abecd3ff5092a136542a24320f7790a6ed8ba0 Mon Sep 17 00:00:00 2001
From: Michael Tom <michael.daniel.tom@gmail.com>
Date: Sun, 30 Oct 2022 21:29:34 -0400
Subject: [PATCH] fix: Add tintColor to Flow FastImageProps type (#871)

---
 src/index.js.flow | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/index.js.flow b/src/index.js.flow
index 7f4c76671..8124c868a 100644
--- a/src/index.js.flow
+++ b/src/index.js.flow
@@ -59,6 +59,7 @@ export type FastImageProps = $ReadOnly<{|
     source?: ?(FastImageSource | number),
     defaultSource?: ?number,
 
+    tintColor?: number | string,
     resizeMode?: ?ResizeModes,
     fallback?: ?boolean,
     testID?: ?string,