From 969c3383195336339ee0564fe6bbb9bc7eb61e21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alican=20=C3=87ubuk=C3=A7uo=C4=9Flu?= Date: Mon, 24 Sep 2018 17:04:29 -0700 Subject: [PATCH] Export ImageURISource type Exporting ImageURISource because we needed to use it in a custom Image component. This should be a case for other people too since handling of `number` ImageSources and `ImageURISource` ImageSources are way different. --- Libraries/Image/ImageSource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Image/ImageSource.js b/Libraries/Image/ImageSource.js index 7864deaeba52..9cb9fceed082 100644 --- a/Libraries/Image/ImageSource.js +++ b/Libraries/Image/ImageSource.js @@ -14,7 +14,7 @@ // that might have more keys. This also has to be inexact to support taking // instances of classes like FBIcon. // https://fburl.com/8lynhvtw -type ImageURISource = $ReadOnly<{ +export type ImageURISource = $ReadOnly<{ uri?: ?string, bundle?: ?string, method?: ?string,