add typeof to resolve `Component: Component` flow error

Summary: A Flow error suppression was hiding two errors: one is a real type incompatibility, another is a "kind" mismatch error where the type of a component was being cast to another component (rather than its type).

Reviewed By: nmote

Differential Revision: D15141749

fbshipit-source-id: a090c02c949eb6614b46f2691ad41cee0b0f3dbd
This commit is contained in:
Avik Chaudhuri 2019-04-29 17:14:35 -07:00 коммит произвёл Facebook Github Bot
Родитель 458e70c79d
Коммит 88c18fa93b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -78,4 +78,4 @@ const ProgressViewIOSWithRef = React.forwardRef(ProgressViewIOS);
/* $FlowFixMe(>=0.89.0 site=react_native_ios_fb) This comment suppresses an
* error found when Flow v0.89 was deployed. To see the error, delete this
* comment and run Flow. */
module.exports = (ProgressViewIOSWithRef: RCTProgressViewNativeComponent);
module.exports = (ProgressViewIOSWithRef: typeof RCTProgressViewNativeComponent);