├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── packages ├── flow2dts-flow-types-polyfill │ ├── index.d.ts │ ├── index.test-d.ts │ ├── package.json │ └── tsconfig.json ├── flow2dts │ ├── bin │ │ └── flow2dts │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── cli.ts │ │ ├── convert.ts │ │ ├── index.ts │ │ └── transform │ │ │ ├── __tests__ │ │ │ ├── __fixtures__ │ │ │ │ ├── class-extends │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── class-members │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── class-simple │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── commonjs-module-exports │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── function-definition │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── generic-declarations │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── interface-extends │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── interface-members │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── interface-simple │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-declaration │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-default-with-class-instance │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-default-with-class │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-default-with-typeof │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-default-with-typeof2 │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-default-with-typeof3 │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-identifier │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-simple │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-export-withtype │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── module-import │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── object-exact │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── object-function │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── object-index-with-alias │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── object-key-optional │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── object-key-variance │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── object-simple │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── polyfill-flow-utility-types │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── type-advanced │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── type-function │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── type-literal │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── type-operator │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── type-primitive │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ ├── variable-as-type │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ │ └── variable-definition │ │ │ │ │ ├── code.js │ │ │ │ │ └── output.d.ts │ │ │ ├── applyOverridesVisitors.test.ts │ │ │ ├── emitImportsForTypeReferencesVisitor.test.ts │ │ │ └── index.test.ts │ │ │ ├── applyOverridesVisitors.ts │ │ │ ├── emitImportsForTypeReferencesVisitor.ts │ │ │ ├── fixupVisitor.ts │ │ │ ├── index.ts │ │ │ ├── polyfillPackagesAndTypes.ts │ │ │ ├── rewriteDeclVisitors │ │ │ ├── declarationVisitor.ts │ │ │ ├── exportVisitor.ts │ │ │ ├── functionVisitor.ts │ │ │ ├── importVisitor.ts │ │ │ ├── index.ts │ │ │ └── typeAliasVisitor.ts │ │ │ ├── rewriteTypeVisitors │ │ │ ├── __tests__ │ │ │ │ └── typeReferenceVisitor.test.ts │ │ │ ├── advancedTypeVisitor.ts │ │ │ ├── index.ts │ │ │ ├── objectTypeVisitor.ts │ │ │ ├── primitiveTypeVisitor.ts │ │ │ ├── typeParameterVisitor.ts │ │ │ └── typeReferenceVisitor.ts │ │ │ ├── state.ts │ │ │ ├── typeReferenceResolver │ │ │ ├── index.ts │ │ │ ├── state.ts │ │ │ └── typeReferenceRecognizerVisitor.ts │ │ │ └── utilities.ts │ └── tsconfig.json └── flow2hint │ ├── bin │ └── flow2hint │ ├── package.json │ ├── src │ ├── cli.ts │ ├── hintfile.ts │ ├── index.ts │ ├── mergeHint.ts │ └── singleFlow2Hint.ts │ └── tsconfig.json ├── patches ├── @babel+generator+7.12.5.patch ├── @babel+parser+7.12.5.patch ├── @babel+traverse+7.12.5.patch ├── @babel+types+7.12.6.patch ├── @react-native-community+picker+1.3.0.patch ├── @types+babel-plugin-tester+9.0.1.patch ├── @types+react+16.9.56.patch ├── babel-plugin-tester+10.0.0.patch └── utility-types+3.10.0.patch ├── scripts ├── create-types-package.js └── tsc-offences.js ├── workbench ├── artsy-eigen │ ├── LICENSE │ ├── data │ │ ├── cityDataSortedByDisplayPreference.json │ │ ├── colors.json │ │ └── schema.graphql │ ├── package.json │ ├── patches │ │ ├── @react-native-community+picker+1.3.0.patch │ │ ├── @sentry+react-native+1.3.2.patch │ │ ├── @types+react-relay+7.0.3.patch │ │ ├── react-native-config+1.3.3.patch │ │ ├── react-native-haptic-feedback+1.10.0.patch │ │ ├── react-native-image-crop-picker+0.32.2.patch │ │ └── relay-mock-network-layer+3.0.0.patch │ ├── src │ │ ├── __generated__ │ │ │ ├── AboutArtist_artwork.graphql.ts │ │ │ ├── AboutWork_artwork.graphql.ts │ │ │ ├── About_gene.graphql.ts │ │ │ ├── ActiveBid_bid.graphql.ts │ │ │ ├── ActiveBidsRefetchQuery.graphql.ts │ │ │ ├── ActiveBids_me.graphql.ts │ │ │ ├── ActiveLot_lotStanding.graphql.ts │ │ │ ├── Article_article.graphql.ts │ │ │ ├── Articles_articles.graphql.ts │ │ │ ├── ArtistAbout_artist.graphql.ts │ │ │ ├── ArtistAboveTheFoldQuery.graphql.ts │ │ │ ├── ArtistArtworksQuery.graphql.ts │ │ │ ├── ArtistArtworks_artist.graphql.ts │ │ │ ├── ArtistBelowTheFoldQuery.graphql.ts │ │ │ ├── ArtistCard_artist.graphql.ts │ │ │ ├── ArtistCollectionsRailTestsQuery.graphql.ts │ │ │ ├── ArtistCollectionsRail_artist.graphql.ts │ │ │ ├── ArtistCollectionsRail_collections.graphql.ts │ │ │ ├── ArtistConsignButtonTestsQuery.graphql.ts │ │ │ ├── ArtistConsignButton_artist.graphql.ts │ │ │ ├── ArtistHeaderFollowArtistMutation.graphql.ts │ │ │ ├── ArtistHeader_artist.graphql.ts │ │ │ ├── ArtistListItemFollowArtistMutation.graphql.ts │ │ │ ├── ArtistListItemTestsQuery.graphql.ts │ │ │ ├── ArtistListItem_artist.graphql.ts │ │ │ ├── ArtistListTestsQuery.graphql.ts │ │ │ ├── ArtistList_targetSupply.graphql.ts │ │ │ ├── ArtistNotableWorksRailTestsQuery.graphql.ts │ │ │ ├── ArtistNotableWorksRail_artist.graphql.ts │ │ │ ├── ArtistRailFollowMutation.graphql.ts │ │ │ ├── ArtistRailNewSuggestionQuery.graphql.ts │ │ │ ├── ArtistRail_rail.graphql.ts │ │ │ ├── ArtistSeriesArtworksInfiniteScrollGridQuery.graphql.ts │ │ │ ├── ArtistSeriesArtworksTestsQuery.graphql.ts │ │ │ ├── ArtistSeriesArtworks_artistSeries.graphql.ts │ │ │ ├── ArtistSeriesFullArtistSeriesListQuery.graphql.ts │ │ │ ├── ArtistSeriesFullArtistSeriesListTestsQuery.graphql.ts │ │ │ ├── ArtistSeriesFullArtistSeriesList_artist.graphql.ts │ │ │ ├── ArtistSeriesHeaderTestsQuery.graphql.ts │ │ │ ├── ArtistSeriesHeader_artistSeries.graphql.ts │ │ │ ├── ArtistSeriesMetaFollowMutation.graphql.ts │ │ │ ├── ArtistSeriesMetaTestsQuery.graphql.ts │ │ │ ├── ArtistSeriesMeta_artistSeries.graphql.ts │ │ │ ├── ArtistSeriesMoreSeriesTestsQuery.graphql.ts │ │ │ ├── ArtistSeriesMoreSeries_artist.graphql.ts │ │ │ ├── ArtistSeriesQuery.graphql.ts │ │ │ ├── ArtistSeriesTestsQuery.graphql.ts │ │ │ ├── ArtistSeries_artistSeries.graphql.ts │ │ │ ├── ArtistShow_show.graphql.ts │ │ │ ├── ArtistShows_artist.graphql.ts │ │ │ ├── ArtistsGroupedByNameTestsQuery.graphql.ts │ │ │ ├── ArtworkAboveTheFoldQuery.graphql.ts │ │ │ ├── ArtworkActionsSaveMutation.graphql.ts │ │ │ ├── ArtworkActionsTestsErrorQuery.graphql.ts │ │ │ ├── ArtworkActionsTestsQuery.graphql.ts │ │ │ ├── ArtworkActions_artwork.graphql.ts │ │ │ ├── ArtworkAttributionClassFAQQuery.graphql.ts │ │ │ ├── ArtworkAttributionClassFAQ_artworkAttributionClasses.graphql.ts │ │ │ ├── ArtworkBelowTheFoldQuery.graphql.ts │ │ │ ├── ArtworkDetails_artwork.graphql.ts │ │ │ ├── ArtworkExtraLinks_artwork.graphql.ts │ │ │ ├── ArtworkGridItem_artwork.graphql.ts │ │ │ ├── ArtworkHeader_artwork.graphql.ts │ │ │ ├── ArtworkHistory_artwork.graphql.ts │ │ │ ├── ArtworkMarkAsRecentlyViewedQuery.graphql.ts │ │ │ ├── ArtworkPreview_artwork.graphql.ts │ │ │ ├── ArtworkRail_rail.graphql.ts │ │ │ ├── ArtworkRefetchQuery.graphql.ts │ │ │ ├── ArtworkTileRailCard_artwork.graphql.ts │ │ │ ├── ArtworkTileRailTestsQuery.graphql.ts │ │ │ ├── ArtworkTileRail_artworksConnection.graphql.ts │ │ │ ├── ArtworkTombstone_artwork.graphql.ts │ │ │ ├── Artwork_artworkAboveTheFold.graphql.ts │ │ │ ├── Artwork_artworkBelowTheFold.graphql.ts │ │ │ ├── Artwork_me.graphql.ts │ │ │ ├── ArtworksInSeriesRailTestsQuery.graphql.ts │ │ │ ├── ArtworksInSeriesRail_artwork.graphql.ts │ │ │ ├── AttachmentListTestsQuery.graphql.ts │ │ │ ├── AttachmentList_messageConnection.graphql.ts │ │ │ ├── AttachmentPreview_attachment.graphql.ts │ │ │ ├── AuctionPriceTestsQuery.graphql.ts │ │ │ ├── AuctionPrice_artwork.graphql.ts │ │ │ ├── AutosuggestResultsPaginationQuery.graphql.ts │ │ │ ├── AutosuggestResultsQuery.graphql.ts │ │ │ ├── AutosuggestResults_results.graphql.ts │ │ │ ├── BidButtonTestsQuery.graphql.ts │ │ │ ├── BidButton_artwork.graphql.ts │ │ │ ├── BidButton_me.graphql.ts │ │ │ ├── BidFlowQuery.graphql.ts │ │ │ ├── BidFlow_me.graphql.ts │ │ │ ├── BidFlow_sale_artwork.graphql.ts │ │ │ ├── BidResult_sale_artwork.graphql.ts │ │ │ ├── BidderPositionQuery.graphql.ts │ │ │ ├── Biography_artist.graphql.ts │ │ │ ├── Biography_gene.graphql.ts │ │ │ ├── BottomTabsModelFetchCurrentUnreadConversationCountQuery.graphql.ts │ │ │ ├── BuyNowButtonOrderMutation.graphql.ts │ │ │ ├── BuyNowButton_artwork.graphql.ts │ │ │ ├── CityBMWListPaginationQuery.graphql.ts │ │ │ ├── CityBMWListQuery.graphql.ts │ │ │ ├── CityBMWList_city.graphql.ts │ │ │ ├── CityFairListPaginationQuery.graphql.ts │ │ │ ├── CityFairListQuery.graphql.ts │ │ │ ├── CityFairList_city.graphql.ts │ │ │ ├── CitySavedListPaginationQuery.graphql.ts │ │ │ ├── CitySavedListQuery.graphql.ts │ │ │ ├── CitySavedList_city.graphql.ts │ │ │ ├── CitySavedList_me.graphql.ts │ │ │ ├── CitySectionListPaginationQuery.graphql.ts │ │ │ ├── CitySectionListQuery.graphql.ts │ │ │ ├── CitySectionList_city.graphql.ts │ │ │ ├── ClosedLot_lotStanding.graphql.ts │ │ │ ├── CollapsibleArtworkDetailsTestsQuery.graphql.ts │ │ │ ├── CollapsibleArtworkDetails_artwork.graphql.ts │ │ │ ├── CollectionArtistSeriesRailTestsQuery.graphql.ts │ │ │ ├── CollectionArtistSeriesRail_collection.graphql.ts │ │ │ ├── CollectionArtistSeriesRail_collectionGroup.graphql.ts │ │ │ ├── CollectionArtworksInfiniteScrollGridQuery.graphql.ts │ │ │ ├── CollectionArtworksTestsQuery.graphql.ts │ │ │ ├── CollectionArtworks_collection.graphql.ts │ │ │ ├── CollectionHeaderTestsQuery.graphql.ts │ │ │ ├── CollectionHeader_collection.graphql.ts │ │ │ ├── CollectionHubsRails_collection.graphql.ts │ │ │ ├── CollectionHubsRails_linkedCollections.graphql.ts │ │ │ ├── CollectionQuery.graphql.ts │ │ │ ├── CollectionTestsQuery.graphql.ts │ │ │ ├── Collection_collection.graphql.ts │ │ │ ├── CollectionsRailTestsQuery.graphql.ts │ │ │ ├── CollectionsRail_collectionsModule.graphql.ts │ │ │ ├── CommercialButtonsTestsMutationQuery.graphql.ts │ │ │ ├── CommercialButtonsTestsRenderQuery.graphql.ts │ │ │ ├── CommercialButtons_artwork.graphql.ts │ │ │ ├── CommercialButtons_me.graphql.ts │ │ │ ├── CommercialEditionSetInformation_artwork.graphql.ts │ │ │ ├── CommercialInformation_artwork.graphql.ts │ │ │ ├── CommercialInformation_me.graphql.ts │ │ │ ├── CommercialPartnerInformation_artwork.graphql.ts │ │ │ ├── ConfirmBidCreateBidderPositionMutation.graphql.ts │ │ │ ├── ConfirmBidCreateCreditCardMutation.graphql.ts │ │ │ ├── ConfirmBidRefetchQuery.graphql.ts │ │ │ ├── ConfirmBidUpdateUserMutation.graphql.ts │ │ │ ├── ConfirmBid_me.graphql.ts │ │ │ ├── ConfirmBid_sale_artwork.graphql.ts │ │ │ ├── ConsignmentsArtistQuery.graphql.ts │ │ │ ├── ConsignmentsHomeQuery.graphql.ts │ │ │ ├── ConsignmentsHome_targetSupply.graphql.ts │ │ │ ├── ContextCardFollowMutation.graphql.ts │ │ │ ├── ContextCard_artwork.graphql.ts │ │ │ ├── ConversationDetailsQuery.graphql.ts │ │ │ ├── ConversationDetailsTestsQuery.graphql.ts │ │ │ ├── ConversationDetails_me.graphql.ts │ │ │ ├── ConversationQuery.graphql.ts │ │ │ ├── ConversationSnippet_conversation.graphql.ts │ │ │ ├── Conversation_me.graphql.ts │ │ │ ├── ConversationsQuery.graphql.ts │ │ │ ├── Conversations_me.graphql.ts │ │ │ ├── CreditCardDetails_card.graphql.ts │ │ │ ├── DetailTestsQuery.graphql.ts │ │ │ ├── Detail_show.graphql.ts │ │ │ ├── EmailConfirmationBannerMutation.graphql.ts │ │ │ ├── EmailConfirmationBannerTestsQuery.graphql.ts │ │ │ ├── EmailConfirmationBanner_me.graphql.ts │ │ │ ├── EventMutation.graphql.ts │ │ │ ├── Fair2AllFollowedArtistsQuery.graphql.ts │ │ │ ├── Fair2AllFollowedArtistsTestsQuery.graphql.ts │ │ │ ├── Fair2AllFollowedArtists_fair.graphql.ts │ │ │ ├── Fair2AllFollowedArtists_fairForFilters.graphql.ts │ │ │ ├── Fair2ArtworksInfiniteScrollGridQuery.graphql.ts │ │ │ ├── Fair2ArtworksTestsQuery.graphql.ts │ │ │ ├── Fair2Artworks_fair.graphql.ts │ │ │ ├── Fair2CollectionsTestsQuery.graphql.ts │ │ │ ├── Fair2Collections_fair.graphql.ts │ │ │ ├── Fair2EditorialTestsQuery.graphql.ts │ │ │ ├── Fair2Editorial_fair.graphql.ts │ │ │ ├── Fair2ExhibitorRailTestsQuery.graphql.ts │ │ │ ├── Fair2ExhibitorRail_show.graphql.ts │ │ │ ├── Fair2ExhibitorsQuery.graphql.ts │ │ │ ├── Fair2ExhibitorsTestsQuery.graphql.ts │ │ │ ├── Fair2Exhibitors_fair.graphql.ts │ │ │ ├── Fair2FollowedArtistsRailTestsQuery.graphql.ts │ │ │ ├── Fair2FollowedArtistsRail_fair.graphql.ts │ │ │ ├── Fair2HeaderTestsQuery.graphql.ts │ │ │ ├── Fair2Header_fair.graphql.ts │ │ │ ├── Fair2MoreInfoQuery.graphql.ts │ │ │ ├── Fair2MoreInfoTestsQuery.graphql.ts │ │ │ ├── Fair2MoreInfo_fair.graphql.ts │ │ │ ├── Fair2Query.graphql.ts │ │ │ ├── Fair2TestsQuery.graphql.ts │ │ │ ├── Fair2Timing_fair.graphql.ts │ │ │ ├── Fair2_fair.graphql.ts │ │ │ ├── FairArtistsQuery.graphql.ts │ │ │ ├── FairArtistsQueryRendererQuery.graphql.ts │ │ │ ├── FairArtists_fair.graphql.ts │ │ │ ├── FairArtworksQuery.graphql.ts │ │ │ ├── FairArtworks_fair.graphql.ts │ │ │ ├── FairBMWArtActivationQuery.graphql.ts │ │ │ ├── FairBMWArtActivationTestsQuery.graphql.ts │ │ │ ├── FairBMWArtActivation_fair.graphql.ts │ │ │ ├── FairBoothHeaderMutation.graphql.ts │ │ │ ├── FairBoothHeader_show.graphql.ts │ │ │ ├── FairBoothPreviewMutation.graphql.ts │ │ │ ├── FairBoothPreview_show.graphql.ts │ │ │ ├── FairBoothQuery.graphql.ts │ │ │ ├── FairBooth_show.graphql.ts │ │ │ ├── FairDetailShowsQuery.graphql.ts │ │ │ ├── FairDetail_fair.graphql.ts │ │ │ ├── FairExhibitorsQuery.graphql.ts │ │ │ ├── FairExhibitorsTestsQuery.graphql.ts │ │ │ ├── FairExhibitors_fair.graphql.ts │ │ │ ├── FairHeader_fair.graphql.ts │ │ │ ├── FairMoreInfoQuery.graphql.ts │ │ │ ├── FairMoreInfoTestsQuery.graphql.ts │ │ │ ├── FairMoreInfo_fair.graphql.ts │ │ │ ├── FairQuery.graphql.ts │ │ │ ├── Fair_fair.graphql.ts │ │ │ ├── FairsRail_fairsModule.graphql.ts │ │ │ ├── FavoriteArtistsPaginationQuery.graphql.ts │ │ │ ├── FavoriteArtistsQuery.graphql.ts │ │ │ ├── FavoriteArtists_me.graphql.ts │ │ │ ├── FavoriteArtworksPaginationQuery.graphql.ts │ │ │ ├── FavoriteArtworksQuery.graphql.ts │ │ │ ├── FavoriteArtworks_me.graphql.ts │ │ │ ├── FavoriteCategoriesPaginationQuery.graphql.ts │ │ │ ├── FavoriteCategoriesQuery.graphql.ts │ │ │ ├── FavoriteCategories_me.graphql.ts │ │ │ ├── FavoriteShowsPaginationQuery.graphql.ts │ │ │ ├── FavoriteShowsQuery.graphql.ts │ │ │ ├── FavoriteShows_me.graphql.ts │ │ │ ├── FeatureFeaturedLink_featuredLink.graphql.ts │ │ │ ├── FeatureHeader_feature.graphql.ts │ │ │ ├── FeatureQuery.graphql.ts │ │ │ ├── Feature_feature.graphql.ts │ │ │ ├── FeaturedArtistsTestsQuery.graphql.ts │ │ │ ├── FeaturedArtists_collection.graphql.ts │ │ │ ├── FeaturedCollectionsRailTestsQuery.graphql.ts │ │ │ ├── FeaturedCollectionsRail_collection.graphql.ts │ │ │ ├── FeaturedCollectionsRail_collectionGroup.graphql.ts │ │ │ ├── FileDownload_attachment.graphql.ts │ │ │ ├── FilterModalTestsQuery.graphql.ts │ │ │ ├── FilteredInfiniteScrollGridQuery.graphql.ts │ │ │ ├── FilteredInfiniteScrollGridTestsQuery.graphql.ts │ │ │ ├── FilteredInfiniteScrollGrid_entity.graphql.ts │ │ │ ├── FiltersTestsQuery.graphql.ts │ │ │ ├── Filters_filteredArtworks.graphql.ts │ │ │ ├── FollowArtistButtonMutation.graphql.ts │ │ │ ├── FollowArtistButtonTestsErrorQuery.graphql.ts │ │ │ ├── FollowArtistButtonTestsQuery.graphql.ts │ │ │ ├── FollowArtistButton_artist.graphql.ts │ │ │ ├── FullFeaturedArtistListQuery.graphql.ts │ │ │ ├── FullFeaturedArtistListTestsQuery.graphql.ts │ │ │ ├── FullFeaturedArtistList_collection.graphql.ts │ │ │ ├── GenePaginationQuery.graphql.ts │ │ │ ├── GeneQuery.graphql.ts │ │ │ ├── Gene_gene.graphql.ts │ │ │ ├── GenericGrid_artworks.graphql.ts │ │ │ ├── GlobalMapTestsQuery.graphql.ts │ │ │ ├── GlobalMap_viewer.graphql.ts │ │ │ ├── HeaderFollowGeneMutation.graphql.ts │ │ │ ├── Header_gene.graphql.ts │ │ │ ├── HomeHeroTestsQuery.graphql.ts │ │ │ ├── HomeHero_homePage.graphql.ts │ │ │ ├── HomeQuery.graphql.ts │ │ │ ├── HomeRefetchQuery.graphql.ts │ │ │ ├── Home_featured.graphql.ts │ │ │ ├── Home_homePage.graphql.ts │ │ │ ├── Home_me.graphql.ts │ │ │ ├── HoursCollapsible_location.graphql.ts │ │ │ ├── ImageCarouselTestsQuery.graphql.ts │ │ │ ├── ImageCarousel_images.graphql.ts │ │ │ ├── ImagePreview_attachment.graphql.ts │ │ │ ├── InboxQuery.graphql.ts │ │ │ ├── InboxRefetchQuery.graphql.ts │ │ │ ├── Inbox_me.graphql.ts │ │ │ ├── InfiniteScrollArtworksGridTestsQuery.graphql.ts │ │ │ ├── InfiniteScrollArtworksGrid_connection.graphql.ts │ │ │ ├── InquiryButtonsTestsQuery.graphql.ts │ │ │ ├── InquiryButtons_artwork.graphql.ts │ │ │ ├── InquiryModalTestsQuery.graphql.ts │ │ │ ├── InquiryModal_artwork.graphql.ts │ │ │ ├── InquiryQuery.graphql.ts │ │ │ ├── Inquiry_artwork.graphql.ts │ │ │ ├── ItemInfoTestsQuery.graphql.ts │ │ │ ├── ItemInfo_item.graphql.ts │ │ │ ├── LocationMap_location.graphql.ts │ │ │ ├── LoggedInUserInfoQuery.graphql.ts │ │ │ ├── LoggedInUserInfo_me.graphql.ts │ │ │ ├── Lot_saleArtwork.graphql.ts │ │ │ ├── LotsByFollowedArtistsQuery.graphql.ts │ │ │ ├── LotsByFollowedArtists_me.graphql.ts │ │ │ ├── MakeOfferButtonOrderMutation.graphql.ts │ │ │ ├── MakeOfferButton_artwork.graphql.ts │ │ │ ├── MapRendererQuery.graphql.ts │ │ │ ├── Message_message.graphql.ts │ │ │ ├── MessagesQuery.graphql.ts │ │ │ ├── Messages_conversation.graphql.ts │ │ │ ├── Metadata_show.graphql.ts │ │ │ ├── MockRelayRendererFixturesArtistQuery.graphql.ts │ │ │ ├── MockRelayRendererFixturesBadQuery.graphql.ts │ │ │ ├── MockRelayRendererFixturesQuery.graphql.ts │ │ │ ├── MockRelayRendererFixtures_artist.graphql.ts │ │ │ ├── MockRelayRendererFixtures_artwork.graphql.ts │ │ │ ├── MockRelayRendererFixtures_artworkMetadata.graphql.ts │ │ │ ├── MoreInfoQuery.graphql.ts │ │ │ ├── MoreInfoTestsQuery.graphql.ts │ │ │ ├── MoreInfo_show.graphql.ts │ │ │ ├── MyAccountEditEmailQuery.graphql.ts │ │ │ ├── MyAccountEditEmail_me.graphql.ts │ │ │ ├── MyAccountEditNameQuery.graphql.ts │ │ │ ├── MyAccountEditName_me.graphql.ts │ │ │ ├── MyAccountEditPhoneQuery.graphql.ts │ │ │ ├── MyAccountEditPhone_me.graphql.ts │ │ │ ├── MyAccountQuery.graphql.ts │ │ │ ├── MyAccountTestsQuery.graphql.ts │ │ │ ├── MyAccount_me.graphql.ts │ │ │ ├── MyBids2TestsQuery.graphql.ts │ │ │ ├── MyBidsQuery.graphql.ts │ │ │ ├── MyBids_me.graphql.ts │ │ │ ├── MyCollectionArtworkArtistArticlesTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkArtistArticles_artwork.graphql.ts │ │ │ ├── MyCollectionArtworkArtistAuctionResultsTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkArtistAuctionResults_artwork.graphql.ts │ │ │ ├── MyCollectionArtworkArtistMarketTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkArtistMarket_marketPriceInsights.graphql.ts │ │ │ ├── MyCollectionArtworkDemandIndexTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkDemandIndex_marketPriceInsights.graphql.ts │ │ │ ├── MyCollectionArtworkFullDetailsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkFullDetails_artwork.graphql.ts │ │ │ ├── MyCollectionArtworkHeaderTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkHeader_artwork.graphql.ts │ │ │ ├── MyCollectionArtworkInsightsTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkInsights_artwork.graphql.ts │ │ │ ├── MyCollectionArtworkInsights_marketPriceInsights.graphql.ts │ │ │ ├── MyCollectionArtworkListItemTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkListItem_artwork.graphql.ts │ │ │ ├── MyCollectionArtworkMetaTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkMeta_artwork.graphql.ts │ │ │ ├── MyCollectionArtworkPriceEstimateTestsQuery.graphql.ts │ │ │ ├── MyCollectionArtworkPriceEstimate_artwork.graphql.ts │ │ │ ├── MyCollectionArtworkPriceEstimate_marketPriceInsights.graphql.ts │ │ │ ├── MyCollectionArtworkQuery.graphql.ts │ │ │ ├── MyCollectionArtwork_sharedProps.graphql.ts │ │ │ ├── MyCollectionPaginationQuery.graphql.ts │ │ │ ├── MyCollectionQuery.graphql.ts │ │ │ ├── MyCollectionTestsQuery.graphql.ts │ │ │ ├── MyCollection_me.graphql.ts │ │ │ ├── MyProfilePaymentDeleteCardMutation.graphql.ts │ │ │ ├── MyProfilePaymentNewCreditCardSaveCardMutation.graphql.ts │ │ │ ├── MyProfilePaymentPaginationQuery.graphql.ts │ │ │ ├── MyProfilePaymentQuery.graphql.ts │ │ │ ├── MyProfilePayment_me.graphql.ts │ │ │ ├── MyProfilePushNotificationsQuery.graphql.ts │ │ │ ├── MyProfilePushNotificationsRefetchQuery.graphql.ts │ │ │ ├── MyProfilePushNotifications_me.graphql.ts │ │ │ ├── MyProfileQuery.graphql.ts │ │ │ ├── MyProfileRefetchQuery.graphql.ts │ │ │ ├── MyProfileTestsQuery.graphql.ts │ │ │ ├── MyProfile_me.graphql.ts │ │ │ ├── Notification_notification.graphql.ts │ │ │ ├── OtherCollectionsRail_collectionGroup.graphql.ts │ │ │ ├── OtherWorks_artwork.graphql.ts │ │ │ ├── PDFPreview_attachment.graphql.ts │ │ │ ├── PartnerArtworkInfiniteScrollGridQuery.graphql.ts │ │ │ ├── PartnerArtworkTestsQuery.graphql.ts │ │ │ ├── PartnerArtwork_partner.graphql.ts │ │ │ ├── PartnerCardFollowMutation.graphql.ts │ │ │ ├── PartnerCardTestsErrorQuery.graphql.ts │ │ │ ├── PartnerCardTestsQuery.graphql.ts │ │ │ ├── PartnerCard_artwork.graphql.ts │ │ │ ├── PartnerEntityHeaderTestsQuery.graphql.ts │ │ │ ├── PartnerEntityHeader_partner.graphql.ts │ │ │ ├── PartnerFollowButtonFollowMutation.graphql.ts │ │ │ ├── PartnerFollowButton_partner.graphql.ts │ │ │ ├── PartnerHeaderTestsQuery.graphql.ts │ │ │ ├── PartnerHeader_partner.graphql.ts │ │ │ ├── PartnerLocationSectionTestsQuery.graphql.ts │ │ │ ├── PartnerLocationSection_partner.graphql.ts │ │ │ ├── PartnerLocationsContainerQuery.graphql.ts │ │ │ ├── PartnerLocationsQuery.graphql.ts │ │ │ ├── PartnerLocationsTestsQuery.graphql.ts │ │ │ ├── PartnerLocations_partner.graphql.ts │ │ │ ├── PartnerMap_location.graphql.ts │ │ │ ├── PartnerOverviewInfiniteScrollQuery.graphql.ts │ │ │ ├── PartnerOverviewTestsQuery.graphql.ts │ │ │ ├── PartnerOverview_partner.graphql.ts │ │ │ ├── PartnerQuery.graphql.ts │ │ │ ├── PartnerRefetchQuery.graphql.ts │ │ │ ├── PartnerShowRailItem_show.graphql.ts │ │ │ ├── PartnerShowsInfiniteScrollGridQuery.graphql.ts │ │ │ ├── PartnerShowsRailQuery.graphql.ts │ │ │ ├── PartnerShowsRail_partner.graphql.ts │ │ │ ├── PartnerShowsTestsQuery.graphql.ts │ │ │ ├── PartnerShows_partner.graphql.ts │ │ │ ├── Partner_partner.graphql.ts │ │ │ ├── PriceSummaryQuery.graphql.ts │ │ │ ├── PriceSummary_calculatedCost.graphql.ts │ │ │ ├── RecentlySoldTestsQuery.graphql.ts │ │ │ ├── RecentlySold_targetSupply.graphql.ts │ │ │ ├── RegisterToBidButtonTestsQuery.graphql.ts │ │ │ ├── RegisterToBidButton_me.graphql.ts │ │ │ ├── RegisterToBidButton_sale.graphql.ts │ │ │ ├── RegistrationCreateBidderMutation.graphql.ts │ │ │ ├── RegistrationCreateCreditCardMutation.graphql.ts │ │ │ ├── RegistrationFlowQuery.graphql.ts │ │ │ ├── RegistrationFlow_me.graphql.ts │ │ │ ├── RegistrationFlow_sale.graphql.ts │ │ │ ├── RegistrationUpdateUserMutation.graphql.ts │ │ │ ├── Registration_me.graphql.ts │ │ │ ├── Registration_sale.graphql.ts │ │ │ ├── RelatedArtist_artist.graphql.ts │ │ │ ├── RelatedArtists_artists.graphql.ts │ │ │ ├── RequestConditionReportMutation.graphql.ts │ │ │ ├── RequestConditionReportQuery.graphql.ts │ │ │ ├── RequestConditionReport_artwork.graphql.ts │ │ │ ├── RequestConditionReport_me.graphql.ts │ │ │ ├── SaleAboveTheFoldQuery.graphql.ts │ │ │ ├── SaleActiveBidItemTestsQuery.graphql.ts │ │ │ ├── SaleActiveBidItem_lotStanding.graphql.ts │ │ │ ├── SaleActiveBidsRefetchQuery.graphql.ts │ │ │ ├── SaleActiveBidsTestsQuery.graphql.ts │ │ │ ├── SaleActiveBids_me.graphql.ts │ │ │ ├── SaleArtworkGridItem_saleArtwork.graphql.ts │ │ │ ├── SaleArtworkListItem_artwork.graphql.ts │ │ │ ├── SaleArtworkList_connection.graphql.ts │ │ │ ├── SaleArtworkTileRailCardTestsQuery.graphql.ts │ │ │ ├── SaleArtworkTileRailCard_saleArtwork.graphql.ts │ │ │ ├── SaleArtworksRailTestsQuery.graphql.ts │ │ │ ├── SaleArtworksRail_me.graphql.ts │ │ │ ├── SaleBelowTheFoldQuery.graphql.ts │ │ │ ├── SaleCard_sale.graphql.ts │ │ │ ├── SaleHeaderTestsQuery.graphql.ts │ │ │ ├── SaleHeader_sale.graphql.ts │ │ │ ├── SaleInfoQueryRendererQuery.graphql.ts │ │ │ ├── SaleInfoTestsQuery.graphql.ts │ │ │ ├── SaleInfo_me.graphql.ts │ │ │ ├── SaleInfo_sale.graphql.ts │ │ │ ├── SaleListItem_sale.graphql.ts │ │ │ ├── SaleLotsListQuery.graphql.ts │ │ │ ├── SaleLotsListTestsQuery.graphql.ts │ │ │ ├── SaleLotsList_saleArtworksConnection.graphql.ts │ │ │ ├── SaleRefetchQuery.graphql.ts │ │ │ ├── Sale_me.graphql.ts │ │ │ ├── Sale_sale.graphql.ts │ │ │ ├── SalesQuery.graphql.ts │ │ │ ├── SalesQueryRendererQuery.graphql.ts │ │ │ ├── SalesRail_salesModule.graphql.ts │ │ │ ├── Sales_me.graphql.ts │ │ │ ├── Sales_sales.graphql.ts │ │ │ ├── SelectMaxBidRefetchQuery.graphql.ts │ │ │ ├── SelectMaxBid_me.graphql.ts │ │ │ ├── SelectMaxBid_sale_artwork.graphql.ts │ │ │ ├── SendConversationMessageMutation.graphql.ts │ │ │ ├── Show2ArtworksEmptyStateTestsQuery.graphql.ts │ │ │ ├── Show2ArtworksEmptyState_show.graphql.ts │ │ │ ├── Show2ArtworksInfiniteScrollGridQuery.graphql.ts │ │ │ ├── Show2ArtworksTestsQuery.graphql.ts │ │ │ ├── Show2Artworks_show.graphql.ts │ │ │ ├── Show2ContextCardTestsQuery.graphql.ts │ │ │ ├── Show2ContextCard_show.graphql.ts │ │ │ ├── Show2Header_show.graphql.ts │ │ │ ├── Show2HoursTestsQuery.graphql.ts │ │ │ ├── Show2Hours_show.graphql.ts │ │ │ ├── Show2Info_show.graphql.ts │ │ │ ├── Show2InstallShots_show.graphql.ts │ │ │ ├── Show2LocationHours_location.graphql.ts │ │ │ ├── Show2LocationTestsQuery.graphql.ts │ │ │ ├── Show2Location_show.graphql.ts │ │ │ ├── Show2MoreInfoQuery.graphql.ts │ │ │ ├── Show2MoreInfoTestsQuery.graphql.ts │ │ │ ├── Show2MoreInfo_show.graphql.ts │ │ │ ├── Show2Query.graphql.ts │ │ │ ├── Show2TestsQuery.graphql.ts │ │ │ ├── Show2ViewingRoomTestsQuery.graphql.ts │ │ │ ├── Show2ViewingRoom_show.graphql.ts │ │ │ ├── Show2_show.graphql.ts │ │ │ ├── ShowArtistsPreviewTestsQuery.graphql.ts │ │ │ ├── ShowArtistsPreview_show.graphql.ts │ │ │ ├── ShowArtistsQuery.graphql.ts │ │ │ ├── ShowArtistsTestsQuery.graphql.ts │ │ │ ├── ShowArtists_show.graphql.ts │ │ │ ├── ShowArtworksPreviewTestsQuery.graphql.ts │ │ │ ├── ShowArtworksPreview_show.graphql.ts │ │ │ ├── ShowArtworksQuery.graphql.ts │ │ │ ├── ShowArtworksTestsQuery.graphql.ts │ │ │ ├── ShowArtworks_show.graphql.ts │ │ │ ├── ShowEventSectionTestsQuery.graphql.ts │ │ │ ├── ShowEventSection_event.graphql.ts │ │ │ ├── ShowHeaderFollowShowMutation.graphql.ts │ │ │ ├── ShowHeaderTestsQuery.graphql.ts │ │ │ ├── ShowHeader_show.graphql.ts │ │ │ ├── ShowItemRowMutation.graphql.ts │ │ │ ├── ShowItemRow_show.graphql.ts │ │ │ ├── ShowItem_show.graphql.ts │ │ │ ├── ShowPreview_show.graphql.ts │ │ │ ├── ShowQuery.graphql.ts │ │ │ ├── ShowTestsQuery.graphql.ts │ │ │ ├── Show_show.graphql.ts │ │ │ ├── Shows_show.graphql.ts │ │ │ ├── SmallList_shows.graphql.ts │ │ │ ├── SmallTileRail_artworks.graphql.ts │ │ │ ├── SubmitInquiryRequestMutation.graphql.ts │ │ │ ├── TimeOffsetProviderQuery.graphql.ts │ │ │ ├── UpdateConversationMutation.graphql.ts │ │ │ ├── VanityURLEntityQuery.graphql.ts │ │ │ ├── VanityURLEntity_fairOrPartner.graphql.ts │ │ │ ├── VariableSizeShowsList_shows.graphql.ts │ │ │ ├── ViewingRoomArtworkQuery.graphql.ts │ │ │ ├── ViewingRoomArtworkRailTestsQuery.graphql.ts │ │ │ ├── ViewingRoomArtworkRail_viewingRoom.graphql.ts │ │ │ ├── ViewingRoomArtwork_selectedArtwork.graphql.ts │ │ │ ├── ViewingRoomArtwork_viewingRoomInfo.graphql.ts │ │ │ ├── ViewingRoomArtworksQuery.graphql.ts │ │ │ ├── ViewingRoomArtworksQueryRendererQuery.graphql.ts │ │ │ ├── ViewingRoomArtworksTestsQuery.graphql.ts │ │ │ ├── ViewingRoomArtworks_viewingRoom.graphql.ts │ │ │ ├── ViewingRoomHeaderTestsQuery.graphql.ts │ │ │ ├── ViewingRoomHeader_viewingRoom.graphql.ts │ │ │ ├── ViewingRoomQuery.graphql.ts │ │ │ ├── ViewingRoomSubsectionsTestsQuery.graphql.ts │ │ │ ├── ViewingRoomSubsections_viewingRoom.graphql.ts │ │ │ ├── ViewingRoomTestsQuery.graphql.ts │ │ │ ├── ViewingRoomViewWorksButtonTestsQuery.graphql.ts │ │ │ ├── ViewingRoomViewWorksButton_viewingRoom.graphql.ts │ │ │ ├── ViewingRoom_viewingRoom.graphql.ts │ │ │ ├── ViewingRoomsHomeRailQuery.graphql.ts │ │ │ ├── ViewingRoomsHomeRail_regular.graphql.ts │ │ │ ├── ViewingRoomsListFeaturedTestsQuery.graphql.ts │ │ │ ├── ViewingRoomsListFeatured_featured.graphql.ts │ │ │ ├── ViewingRoomsListItem_item.graphql.ts │ │ │ ├── ViewingRoomsListQuery.graphql.ts │ │ │ ├── ViewingRoomsList_query.graphql.ts │ │ │ ├── WorksForYouPaginationQuery.graphql.ts │ │ │ ├── WorksForYouQuery.graphql.ts │ │ │ ├── WorksForYou_me.graphql.ts │ │ │ ├── addAssetToConsignmentMutation.graphql.ts │ │ │ ├── createConsignmentSubmissionMutation.graphql.ts │ │ │ ├── createGeminiAssetWithS3CredentialsMutation.graphql.ts │ │ │ ├── createMockNetworkLayerTestsAliasQuery.graphql.ts │ │ │ ├── createMockNetworkLayerTestsQuery.graphql.ts │ │ │ ├── getConvectionGeminiKeyQuery.graphql.ts │ │ │ ├── getGeminiCredentialsForEnvironmentMutation.graphql.ts │ │ │ ├── indexTestsQuery.graphql.ts │ │ │ ├── myCollectionAddArtworkMutation.graphql.ts │ │ │ ├── myCollectionDeleteArtworkMutation.graphql.ts │ │ │ ├── myCollectionEditArtworkMutation.graphql.ts │ │ │ ├── updateConsignmentSubmissionMutation.graphql.ts │ │ │ └── updateMyUserProfileMutation.graphql.ts │ │ ├── ambient.d.ts │ │ ├── lib │ │ │ ├── AppRegistry.tsx │ │ │ ├── Components │ │ │ │ ├── AboveTheFoldFlatList.tsx │ │ │ │ ├── AnimatedBottomButton.tsx │ │ │ │ ├── Artist │ │ │ │ │ ├── Articles │ │ │ │ │ │ ├── Article.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── Article-tests.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ArtistAbout.tsx │ │ │ │ │ ├── ArtistArtworks │ │ │ │ │ │ ├── ArtistArtworks.tsx │ │ │ │ │ │ ├── ArtistCollectionsRail.tsx │ │ │ │ │ │ ├── ArtistNotableWorksRail.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── ArtistCollectionsRail-tests.tsx │ │ │ │ │ │ │ └── ArtistNotableWorksRail-tests.tsx │ │ │ │ │ ├── ArtistConsignButton.tsx │ │ │ │ │ ├── ArtistHeader.tsx │ │ │ │ │ ├── ArtistInsights │ │ │ │ │ │ ├── ArtistInsights.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── ArtistInsights-tests.tsx │ │ │ │ │ ├── ArtistShows │ │ │ │ │ │ ├── ArtistShow.tsx │ │ │ │ │ │ ├── ArtistShows.tsx │ │ │ │ │ │ ├── Metadata.tsx │ │ │ │ │ │ ├── SmallList.tsx │ │ │ │ │ │ ├── VariableSizeShowsList.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── ArtistShow-tests.tsx │ │ │ │ │ │ │ ├── Metadata-tests.tsx │ │ │ │ │ │ │ ├── SmallList-tests.tsx │ │ │ │ │ │ │ └── VariableSizeShowsList-tests.tsx │ │ │ │ │ ├── Biography.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── ArtistConsignButton-tests.tsx │ │ │ │ │ │ └── Header-tests.tsx │ │ │ │ ├── ArtistListItem.tsx │ │ │ │ ├── ArtistsGroupedByName.tsx │ │ │ │ ├── ArtsyWebView.tsx │ │ │ │ ├── ArtworkFilterOptions │ │ │ │ │ ├── ArtistIDsArtworksOptions.tsx │ │ │ │ │ ├── ArtistIDsOptionsScreen.tsx │ │ │ │ │ ├── ArtistIDsSaleArtworksOptionsScreen.tsx │ │ │ │ │ ├── ColorOptions.tsx │ │ │ │ │ ├── ColorSwatch.tsx │ │ │ │ │ ├── EstimateRangeOptions.tsx │ │ │ │ │ ├── FilterToggleButton.tsx │ │ │ │ │ ├── GalleryOptions.tsx │ │ │ │ │ ├── InstitutionOptions.tsx │ │ │ │ │ ├── MediumOptions.tsx │ │ │ │ │ ├── MultiSelectCheckOption.tsx │ │ │ │ │ ├── MultiSelectOption.tsx │ │ │ │ │ ├── PriceRangeOptions.tsx │ │ │ │ │ ├── SingleSelectOption.tsx │ │ │ │ │ ├── SizeOptions.tsx │ │ │ │ │ ├── SortOptions.tsx │ │ │ │ │ ├── TimePeriodOptions.tsx │ │ │ │ │ ├── ViewAsOptions.tsx │ │ │ │ │ ├── WaysToBuyOptions.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── AggregationOptionCommonValidation.tsx │ │ │ │ │ │ ├── ArtistIDsArtworksOptions-tests.tsx │ │ │ │ │ │ ├── ColorOptions-tests.tsx │ │ │ │ │ │ ├── ColorSwatch-tests.tsx │ │ │ │ │ │ ├── GalleryOptions-tests.tsx │ │ │ │ │ │ ├── InstitutionOptions-tests.tsx │ │ │ │ │ │ ├── MediumOptions-tests.tsx │ │ │ │ │ │ ├── PriceRangeOptions-tests.tsx │ │ │ │ │ │ ├── SizeOptions-tests.tsx │ │ │ │ │ │ ├── SortOptions-tests.tsx │ │ │ │ │ │ ├── TimePeriodOptions-tests.tsx │ │ │ │ │ │ └── WaysToBuyOptions-tests.tsx │ │ │ │ ├── ArtworkGrids │ │ │ │ │ ├── ArtworkGridItem.tsx │ │ │ │ │ ├── FilteredArtworkGridZeroState.tsx │ │ │ │ │ ├── GenericGrid.tsx │ │ │ │ │ ├── InfiniteScrollArtworksGrid.tsx │ │ │ │ │ ├── SaleArtworkGridItem.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── ArtworkGridItem-tests.tsx │ │ │ │ │ │ ├── GenericGrid-tests.tsx │ │ │ │ │ │ ├── InfiniteScrollArtworksGrid-tests.tsx │ │ │ │ │ │ └── __fixtures__ │ │ │ │ │ │ └── artwork.ts │ │ │ │ ├── ArtworkTileRail │ │ │ │ │ ├── ArtworkTileRail.tsx │ │ │ │ │ ├── ArtworkTileRailCard.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── ArtworkTileRail-tests.tsx │ │ │ │ │ │ └── ArtworkTileRailCard-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Bidding │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── Animation │ │ │ │ │ │ │ └── CssTransition.tsx │ │ │ │ │ │ ├── BackButton.tsx │ │ │ │ │ │ ├── BidInfoRow.tsx │ │ │ │ │ │ ├── BiddingThemeProvider.tsx │ │ │ │ │ │ ├── Checkbox.tsx │ │ │ │ │ │ ├── Containers.tsx │ │ │ │ │ │ ├── Divider.tsx │ │ │ │ │ │ ├── Icon.tsx │ │ │ │ │ │ ├── Input.tsx │ │ │ │ │ │ ├── MaxBidPicker.tsx │ │ │ │ │ │ ├── PaymentInfo.tsx │ │ │ │ │ │ ├── Timer.tsx │ │ │ │ │ │ ├── Title.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── .gitkeep │ │ │ │ │ │ │ ├── Checkbox-tests.tsx │ │ │ │ │ │ │ ├── Input-tests.tsx │ │ │ │ │ │ │ ├── MaxBidPicker-tests.tsx │ │ │ │ │ │ │ ├── PaymentInfo-tests.tsx │ │ │ │ │ │ │ ├── Timer-tests.tsx │ │ │ │ │ │ │ └── Title-tests.tsx │ │ │ │ │ ├── Context │ │ │ │ │ │ ├── TimeOffsetProvider.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── TimeOffsetProvider-tests.tsx │ │ │ │ │ ├── Elements │ │ │ │ │ │ ├── Flex.tsx │ │ │ │ │ │ ├── Grid.tsx │ │ │ │ │ │ ├── Image.tsx │ │ │ │ │ │ ├── TextInput.tsx │ │ │ │ │ │ ├── Theme.tsx │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ ├── Screens │ │ │ │ │ │ ├── BidResult.tsx │ │ │ │ │ │ ├── BillingAddress.tsx │ │ │ │ │ │ ├── ConfirmBid │ │ │ │ │ │ │ ├── BidderPositionQuery.ts │ │ │ │ │ │ │ ├── PriceSummary.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── CreditCardForm.tsx │ │ │ │ │ │ ├── Registration.tsx │ │ │ │ │ │ ├── RegistrationResult.tsx │ │ │ │ │ │ ├── SelectCountry.tsx │ │ │ │ │ │ ├── SelectMaxBid.tsx │ │ │ │ │ │ ├── SelectMaxBidEdit.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── .gitkeep │ │ │ │ │ │ │ ├── BidResult-tests.tsx │ │ │ │ │ │ │ ├── BillingAddress-tests.tsx │ │ │ │ │ │ │ ├── ConfirmBid-tests.tsx │ │ │ │ │ │ │ ├── CreditCardForm-tests.tsx │ │ │ │ │ │ │ ├── Registration-tests.tsx │ │ │ │ │ │ │ ├── RegistrationResult-tests.tsx │ │ │ │ │ │ │ ├── SelectCountry-tests.tsx │ │ │ │ │ │ │ ├── SelectMaxBid-tests.tsx │ │ │ │ │ │ │ └── SelectMaxBidEdit-tests.tsx │ │ │ │ │ ├── Validators │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index-tests.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── BidFlow-tests.tsx │ │ │ │ │ │ └── Helpers │ │ │ │ │ │ │ └── FakeNavigator.tsx │ │ │ │ │ └── types.ts │ │ │ │ ├── Buttons │ │ │ │ │ ├── BottomAlignedButtonWrapper.tsx │ │ │ │ │ ├── CaretButton.tsx │ │ │ │ │ ├── DarkNavigationButton.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── CaretButton-tests.tsx │ │ │ │ │ │ └── DarkNavigationButton-tests.tsx │ │ │ │ ├── ConnectivityBanner.tsx │ │ │ │ ├── Countdown │ │ │ │ │ ├── CountdownTimer.tsx │ │ │ │ │ ├── DurationProvider.tsx │ │ │ │ │ ├── StateManager.tsx │ │ │ │ │ ├── Ticker.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── CountdownTimer-tests.tsx │ │ │ │ │ │ ├── DurationProvider-tests.tsx │ │ │ │ │ │ ├── StateManager-tests.tsx │ │ │ │ │ │ └── Ticker-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CountrySelect.tsx │ │ │ │ ├── CreditCardDetails.tsx │ │ │ │ ├── Disappearable.tsx │ │ │ │ ├── DottedLine.tsx │ │ │ │ ├── EntityList │ │ │ │ │ ├── Components │ │ │ │ │ │ └── EntityItem.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── EventTiming.tsx │ │ │ │ ├── FadeIn.tsx │ │ │ │ ├── FancyModal │ │ │ │ │ ├── FancyModal.tsx │ │ │ │ │ ├── FancyModalCard.tsx │ │ │ │ │ ├── FancyModalContext.tsx │ │ │ │ │ └── FancyModalHeader.tsx │ │ │ │ ├── FilterModal │ │ │ │ │ ├── FilterModal.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── FilterModal-tests.tsx │ │ │ │ │ │ └── FilterTestHelper.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FilteredInfiniteScrollGrid │ │ │ │ │ ├── FilteredInfiniteScrollGrid.tsx │ │ │ │ │ ├── Filters.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── FilteredInfiniteScrollGrid-tests.tsx │ │ │ │ │ │ └── Filters-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Gene │ │ │ │ │ ├── About.tsx │ │ │ │ │ ├── Biography.tsx │ │ │ │ │ ├── Header.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── About-tests.tsx │ │ │ │ │ │ ├── Biography-tests.tsx │ │ │ │ │ │ └── Header-tests.tsx │ │ │ │ ├── GenericArtistSeriesRail.tsx │ │ │ │ ├── HeaderTabGridPlaceholder.tsx │ │ │ │ ├── Home │ │ │ │ │ ├── ArtistRails │ │ │ │ │ │ ├── ArtistCard.tsx │ │ │ │ │ │ ├── ArtistRail.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── ArtistCard-tests.tsx │ │ │ │ │ ├── CardRailCard.tsx │ │ │ │ │ └── CardRailFlatList.tsx │ │ │ │ ├── HoursCollapsible.tsx │ │ │ │ ├── Input │ │ │ │ │ ├── Input.tsx │ │ │ │ │ └── InputTitle.tsx │ │ │ │ ├── InternalWebView.tsx │ │ │ │ ├── Lists │ │ │ │ │ ├── SavedItemRow.tsx │ │ │ │ │ ├── ShowItemRow.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── SavedItemRow-tests.tsx │ │ │ │ ├── LoadFailureView.tsx │ │ │ │ ├── LocationMap │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Markdown.tsx │ │ │ │ ├── MenuItem.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ ├── Modals │ │ │ │ │ ├── LoadingModal.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── LoadingModal-tests.tsx │ │ │ │ ├── NativeViewController.tsx │ │ │ │ ├── OpaqueImageView │ │ │ │ │ ├── OpaqueImageView.tsx │ │ │ │ │ └── createGeminiUrl.tsx │ │ │ │ ├── PageWithSimpleHeader.tsx │ │ │ │ ├── PartnerEntityHeader.tsx │ │ │ │ ├── Picker.tsx │ │ │ │ ├── PopIn.tsx │ │ │ │ ├── Portal.tsx │ │ │ │ ├── ReadMore.tsx │ │ │ │ ├── RelatedArtists │ │ │ │ │ ├── RelatedArtist.tsx │ │ │ │ │ ├── RelatedArtists.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Layout-tests.tsx │ │ │ │ ├── RetryErrorBoundary.tsx │ │ │ │ ├── SaleArtworkTileRailCard │ │ │ │ │ ├── SaleArtworkTileRailCard.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── SaleArtworkTileRailCard-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ScrollableTabBar.tsx │ │ │ │ ├── SearchInput.tsx │ │ │ │ ├── SectionTitle.tsx │ │ │ │ ├── Select.tsx │ │ │ │ ├── Separator.tsx │ │ │ │ ├── Show │ │ │ │ │ ├── ShowArtistsPreview.tsx │ │ │ │ │ ├── ShowArtworksPreview.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── ShowArtistsPreview-tests.tsx │ │ │ │ │ │ └── ShowArtworksPreview-tests.tsx │ │ │ │ ├── Spinner.tsx │ │ │ │ ├── Stack.tsx │ │ │ │ ├── States │ │ │ │ │ ├── ZeroState.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ZeroState-tests.tsx │ │ │ │ ├── StickyTabPage │ │ │ │ │ ├── SnappyHorizontalRail.tsx │ │ │ │ │ ├── StickyTabPage.tsx │ │ │ │ │ ├── StickyTabPageFlatList.tsx │ │ │ │ │ ├── StickyTabPageScrollView.tsx │ │ │ │ │ ├── StickyTabPageTabBar.tsx │ │ │ │ │ └── reanimatedHelpers.ts │ │ │ │ ├── StyledWebView.tsx │ │ │ │ ├── SwitchMenu.tsx │ │ │ │ ├── TabBar.tsx │ │ │ │ ├── TabEmptyState.tsx │ │ │ │ ├── Text │ │ │ │ │ ├── LinkText.tsx │ │ │ │ │ └── Serif.tsx │ │ │ │ ├── WithCurrentTime.tsx │ │ │ │ ├── WorksForYou │ │ │ │ │ ├── Notification.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Notification-tests.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── ArtistListItem-tests.tsx │ │ │ │ │ ├── ArtistsGroupedByName-tests.tsx │ │ │ │ │ ├── ArtsyWebView-tests.tsx │ │ │ │ │ ├── ConnectivityBanner-tests.tsx │ │ │ │ │ ├── Disappearable-tests.tsx │ │ │ │ │ ├── EventTiming-tests.tsx │ │ │ │ │ ├── HoursCollapsible-tests.tsx │ │ │ │ │ ├── Markdown-tests.tsx │ │ │ │ │ ├── Modal-tests.tsx │ │ │ │ │ ├── PartnerEntityHeader-tests.tsx │ │ │ │ │ ├── Picker-tests.tsx │ │ │ │ │ ├── Portal-tests.tsx │ │ │ │ │ ├── ReadMore-tests.tsx │ │ │ │ │ ├── RetryErrorBoundary-tests.tsx │ │ │ │ │ ├── ScrollView-tests.tsx │ │ │ │ │ ├── SectionTitle-tests.tsx │ │ │ │ │ └── Separator-tests.tsx │ │ │ ├── Containers │ │ │ │ ├── BidFlow.tsx │ │ │ │ ├── Gene.tsx │ │ │ │ ├── Inbox.tsx │ │ │ │ ├── Inquiry.tsx │ │ │ │ ├── RegistrationFlow.tsx │ │ │ │ ├── WorksForYou.tsx │ │ │ │ └── __tests__ │ │ │ │ │ ├── BidFlow-tests.tsx │ │ │ │ │ ├── Gene-tests.tsx │ │ │ │ │ ├── Inbox-tests.tsx │ │ │ │ │ ├── Inquiry-tests.tsx │ │ │ │ │ ├── RegistrationFlow-tests.tsx │ │ │ │ │ └── WorksForYou-tests.tsx │ │ │ ├── ErrorReporting.ts │ │ │ ├── Icons │ │ │ │ ├── ChevronIcon.tsx │ │ │ │ ├── CircleWhiteCheckIcon.tsx │ │ │ │ ├── Consignments │ │ │ │ │ ├── CamIcon.tsx │ │ │ │ │ ├── MoneyIcon.tsx │ │ │ │ │ ├── OfferIcon.tsx │ │ │ │ │ ├── SellIcon.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Crosshair.tsx │ │ │ │ ├── Pin.tsx │ │ │ │ ├── PinFairSelected.tsx │ │ │ │ ├── PinSavedOff.tsx │ │ │ │ ├── PinSavedOn.tsx │ │ │ │ ├── PinSavedSelected.tsx │ │ │ │ ├── SearchIcon.tsx │ │ │ │ └── TriangleDown.tsx │ │ │ ├── NativeModules │ │ │ │ ├── Events.tsx │ │ │ │ ├── GraphQLQueryCache.ts │ │ │ │ ├── NotificationsManager.tsx │ │ │ │ ├── triggerCamera.tsx │ │ │ │ └── triggerRefine.tsx │ │ │ ├── Scenes │ │ │ │ ├── About │ │ │ │ │ ├── About.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── About-tests.tsx │ │ │ │ ├── Artist │ │ │ │ │ ├── Artist.tsx │ │ │ │ │ ├── Components │ │ │ │ │ │ └── ArtistMarketStats.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Artist-tests.tsx │ │ │ │ ├── ArtistSeries │ │ │ │ │ ├── ArtistSeries.tsx │ │ │ │ │ ├── ArtistSeriesArtworks.tsx │ │ │ │ │ ├── ArtistSeriesFullArtistSeriesList.tsx │ │ │ │ │ ├── ArtistSeriesHeader.tsx │ │ │ │ │ ├── ArtistSeriesListItem.tsx │ │ │ │ │ ├── ArtistSeriesMeta.tsx │ │ │ │ │ ├── ArtistSeriesMoreSeries.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── ArtistSeries-tests.tsx │ │ │ │ │ │ ├── ArtistSeriesArtworks-tests.tsx │ │ │ │ │ │ ├── ArtistSeriesFullArtistSeriesList-tests.tsx │ │ │ │ │ │ ├── ArtistSeriesHeader-tests.tsx │ │ │ │ │ │ ├── ArtistSeriesListItem-tests.tsx │ │ │ │ │ │ ├── ArtistSeriesMeta-tests.tsx │ │ │ │ │ │ └── ArtistSeriesMoreSeries-tests.tsx │ │ │ │ ├── Artwork │ │ │ │ │ ├── Artwork.tsx │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── AboutArtist.tsx │ │ │ │ │ │ ├── AboutWork.tsx │ │ │ │ │ │ ├── ArtworkActions.tsx │ │ │ │ │ │ ├── ArtworkDetails.tsx │ │ │ │ │ │ ├── ArtworkDetailsRow.tsx │ │ │ │ │ │ ├── ArtworkExtraLinks │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── index-tests.tsx │ │ │ │ │ │ │ │ └── partnerName-tests.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── partnerName.tsx │ │ │ │ │ │ ├── ArtworkHeader.tsx │ │ │ │ │ │ ├── ArtworkHistory.tsx │ │ │ │ │ │ ├── ArtworkTombstone.tsx │ │ │ │ │ │ ├── ArtworksInSeriesRail.tsx │ │ │ │ │ │ ├── AuctionPrice.tsx │ │ │ │ │ │ ├── CommercialButtons │ │ │ │ │ │ │ ├── BidButton.tsx │ │ │ │ │ │ │ ├── BuyNowButton.tsx │ │ │ │ │ │ │ ├── CollapsibleArtworkDetails.tsx │ │ │ │ │ │ │ ├── CommercialButtons.tsx │ │ │ │ │ │ │ ├── InquiryButtons.tsx │ │ │ │ │ │ │ ├── InquiryModal.tsx │ │ │ │ │ │ │ ├── InquirySuccessNotification.tsx │ │ │ │ │ │ │ ├── LocationAutocomplete.tsx │ │ │ │ │ │ │ ├── MakeOfferButton.tsx │ │ │ │ │ │ │ ├── ShippingModal.tsx │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ ├── BidButton-tests.tsx │ │ │ │ │ │ │ │ ├── CollapsibleArtworkDetails-tests.tsx │ │ │ │ │ │ │ │ ├── CommercialButtons-tests.tsx │ │ │ │ │ │ │ │ ├── InquiryButtons-tests.tsx │ │ │ │ │ │ │ │ ├── InquiryModal-tests.tsx │ │ │ │ │ │ │ │ ├── LocationAutocomplete-tests.tsx │ │ │ │ │ │ │ │ └── helpers.ts │ │ │ │ │ │ ├── CommercialEditionSetInformation.tsx │ │ │ │ │ │ ├── CommercialInformation.tsx │ │ │ │ │ │ ├── CommercialPartnerInformation.tsx │ │ │ │ │ │ ├── ContextCard.tsx │ │ │ │ │ │ ├── FollowArtistButton.tsx │ │ │ │ │ │ ├── ImageCarousel │ │ │ │ │ │ │ ├── FullScreen │ │ │ │ │ │ │ │ ├── DeepZoom │ │ │ │ │ │ │ │ │ ├── DeepZoomLevel.tsx │ │ │ │ │ │ │ │ │ ├── DeepZoomOverlay.tsx │ │ │ │ │ │ │ │ │ ├── DeepZoomPyramid.ts │ │ │ │ │ │ │ │ │ ├── DeepZoomTile.tsx │ │ │ │ │ │ │ │ │ ├── __deepZoomDebug.ts │ │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ │ ├── DeepZoomPyramid-tests.ts │ │ │ │ │ │ │ │ │ │ └── deepZoomGeometry-tests.ts │ │ │ │ │ │ │ │ │ ├── deepZoomGeometry.ts │ │ │ │ │ │ │ │ │ └── useIsMounted.ts │ │ │ │ │ │ │ │ ├── ImageCarouselCloseButton.tsx │ │ │ │ │ │ │ │ ├── ImageCarouselFullScreen.tsx │ │ │ │ │ │ │ │ ├── ImageZoomView.tsx │ │ │ │ │ │ │ │ ├── IndexIndicator.tsx │ │ │ │ │ │ │ │ ├── StatusBarOverlay.tsx │ │ │ │ │ │ │ │ ├── VerticalSwipeToDismiss.tsx │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ └── ImageCarouselFullScreen-tests.tsx │ │ │ │ │ │ │ │ ├── boxShadow.ts │ │ │ │ │ │ │ │ ├── useDoublePressCallback.ts │ │ │ │ │ │ │ │ ├── useEventStream.ts │ │ │ │ │ │ │ │ └── useSpringFade.ts │ │ │ │ │ │ │ ├── ImageCarousel.tsx │ │ │ │ │ │ │ ├── ImageCarouselContext.tsx │ │ │ │ │ │ │ ├── ImageCarouselEmbedded.tsx │ │ │ │ │ │ │ ├── ImageWithLoadingState.tsx │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── ImageCarousel-tests.tsx │ │ │ │ │ │ │ │ ├── ImageCarouselContext-tests.tsx │ │ │ │ │ │ │ │ ├── ImageCarouselEmbedded-tests.tsx │ │ │ │ │ │ │ │ ├── ImageWithLoadingState-tests.tsx │ │ │ │ │ │ │ │ ├── geometry-tests.ts │ │ │ │ │ │ │ │ ├── useAnimatedValue-tests.tsx │ │ │ │ │ │ │ │ └── useSpringValue-tests.tsx │ │ │ │ │ │ │ ├── geometry.ts │ │ │ │ │ │ │ ├── qa-script.md │ │ │ │ │ │ │ ├── useAnimatedValue.ts │ │ │ │ │ │ │ └── useSpringValue.ts │ │ │ │ │ │ ├── Mutation │ │ │ │ │ │ │ └── SubmitInquiryRequest.ts │ │ │ │ │ │ ├── OtherWorks │ │ │ │ │ │ │ ├── ContextGridCTA.tsx │ │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ │ ├── OtherWorks.tsx │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ └── Header-tests.tsx │ │ │ │ │ │ ├── PartnerCard.tsx │ │ │ │ │ │ ├── RequestConditionReport.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── AboutArtist-tests.tsx │ │ │ │ │ │ │ ├── AboutWork-tests.tsx │ │ │ │ │ │ │ ├── ArtworkActions-tests.tsx │ │ │ │ │ │ │ ├── ArtworkDetails-tests.tsx │ │ │ │ │ │ │ ├── ArtworkHeader-tests.tsx │ │ │ │ │ │ │ ├── ArtworkHistory-tests.tsx │ │ │ │ │ │ │ ├── ArtworkTombstone-tests.tsx │ │ │ │ │ │ │ ├── ArtworksInSeriesRail-tests.tsx │ │ │ │ │ │ │ ├── AuctionPrice-tests.tsx │ │ │ │ │ │ │ ├── CommercialEditionSetInformation-tests.tsx │ │ │ │ │ │ │ ├── CommercialInformation-tests.tsx │ │ │ │ │ │ │ ├── CommercialPartnerInformation-tests.tsx │ │ │ │ │ │ │ ├── ContextCard-tests.tsx │ │ │ │ │ │ │ ├── FollowArtistButton-tests.tsx │ │ │ │ │ │ │ ├── OtherWorks-tests.tsx │ │ │ │ │ │ │ ├── PartnerCard-tests.tsx │ │ │ │ │ │ │ ├── RequestConditionReport-analytics-tests.tsx │ │ │ │ │ │ │ └── RequestConditionReport-tests.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Artwork-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ArtworkAttributionClassFAQ │ │ │ │ │ ├── ArtworkAttributionClassFAQ.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── ArtworkAttributionClassFAQ-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── BottomTabs │ │ │ │ │ ├── BottomTabType.ts │ │ │ │ │ ├── BottomTabs.tsx │ │ │ │ │ ├── BottomTabsButton.tsx │ │ │ │ │ ├── BottomTabsIcon.tsx │ │ │ │ │ ├── BottomTabsModel.ts │ │ │ │ │ ├── BottomTabsNavigator.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── BottomTabs-tests.tsx │ │ │ │ │ │ ├── BottomTabsButton-tests.tsx │ │ │ │ │ │ └── BottomTabsNavigator-tests.tsx │ │ │ │ │ └── bottomTabsConfig.tsx │ │ │ │ ├── City │ │ │ │ │ ├── City.tsx │ │ │ │ │ ├── CityBMWList.tsx │ │ │ │ │ ├── CityBMWSponsorship.tsx │ │ │ │ │ ├── CityFairList.tsx │ │ │ │ │ ├── CityPicker.tsx │ │ │ │ │ ├── CitySavedList.tsx │ │ │ │ │ ├── CitySectionList.tsx │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── AllEvents.tsx │ │ │ │ │ │ ├── BMWEventSection │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Event │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── EventList.tsx │ │ │ │ │ │ ├── EventSection │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── FairEventSection │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ │ ├── FairEventSectionCard.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ └── FairEventSectionCard-tests.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── SavedEventSection │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── TabFairItemRow │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── AllEvents-tests.tsx │ │ │ │ │ │ │ └── EventList-tests.tsx │ │ │ │ │ ├── cityTabs.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── Collection │ │ │ │ │ ├── Collection.tsx │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── CollectionHubsRails │ │ │ │ │ │ │ ├── ArtistSeries │ │ │ │ │ │ │ │ ├── CollectionArtistSeriesRail.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ └── CollectionArtistSeriesRail-tests.tsx │ │ │ │ │ │ │ ├── FeaturedCollections │ │ │ │ │ │ │ │ ├── FeaturedCollectionsRail.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ └── FeaturedCollectionsRail-tests.tsx │ │ │ │ │ │ │ ├── OtherCollections │ │ │ │ │ │ │ │ ├── OtherCollectionsRail.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ └── OtherCollectionsRail-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── FeaturedArtists.tsx │ │ │ │ │ │ ├── FullFeaturedArtistList.tsx │ │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ │ ├── CollectionFixture.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── FeaturedArtists-tests.tsx │ │ │ │ │ │ │ └── FullFeaturedArtistList-tests.tsx │ │ │ │ │ ├── Screens │ │ │ │ │ │ ├── CollectionArtworks.tsx │ │ │ │ │ │ ├── CollectionHeader.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── CollectionArtworks-tests.tsx │ │ │ │ │ │ │ └── CollectionHeader-tests.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Collection-tests.tsx │ │ │ │ ├── Consignments │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ArtworkConsignmentTodo.tsx │ │ │ │ │ │ ├── BottomAlignedButton.tsx │ │ │ │ │ │ ├── FormElements.tsx │ │ │ │ │ │ ├── ImageSelection.tsx │ │ │ │ │ │ ├── SearchResults.tsx │ │ │ │ │ │ ├── TextArea.tsx │ │ │ │ │ │ ├── TextInput.tsx │ │ │ │ │ │ ├── Toggle.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── ArtworkConsignmentTodo-tests.tsx │ │ │ │ │ │ │ ├── FormElements-tests.tsx │ │ │ │ │ │ │ ├── ImageSelection-tests.tsx │ │ │ │ │ │ │ ├── TextArea-tests.tsx │ │ │ │ │ │ │ ├── TextInput-tests.tsx │ │ │ │ │ │ │ └── Toggle-tests.tsx │ │ │ │ │ ├── ConsignmentsHome │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ ├── ArtistList.tsx │ │ │ │ │ │ │ ├── Footer.tsx │ │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ │ ├── HowItWorks.tsx │ │ │ │ │ │ │ ├── RecentlySold.tsx │ │ │ │ │ │ │ ├── TextContainer.tsx │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ ├── ArtistList-tests.tsx │ │ │ │ │ │ │ │ └── RecentlySold-tests.tsx │ │ │ │ │ │ ├── ConsignmentsHome.tsx │ │ │ │ │ │ ├── ConsignmentsSubmissionForm.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ ├── Screens │ │ │ │ │ │ ├── Confirmation.tsx │ │ │ │ │ │ ├── ConsignmentsArtist.tsx │ │ │ │ │ │ ├── Edition.tsx │ │ │ │ │ │ ├── Location.tsx │ │ │ │ │ │ ├── Metadata.tsx │ │ │ │ │ │ ├── Overview.tsx │ │ │ │ │ │ ├── Provenance.tsx │ │ │ │ │ │ ├── SelectFromPhotoLibrary.tsx │ │ │ │ │ │ ├── Welcome.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── Confirmation-tests.tsx │ │ │ │ │ │ │ ├── ConsignmentsArtist-tests.tsx │ │ │ │ │ │ │ ├── Edition-tests.tsx │ │ │ │ │ │ │ ├── Location-tests.tsx │ │ │ │ │ │ │ ├── Metadata-tests.tsx │ │ │ │ │ │ │ ├── Overview-analytics-tests.tsx │ │ │ │ │ │ │ ├── Overview-local-storage-tests.tsx │ │ │ │ │ │ │ ├── Overview-tests.tsx │ │ │ │ │ │ │ ├── Overview-uploading-tests.tsx │ │ │ │ │ │ │ ├── Provenance-tests.tsx │ │ │ │ │ │ │ ├── SelectFromPhotoLibrary-tests.tsx │ │ │ │ │ │ │ ├── Welcome-tests.tsx │ │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── Metadata-tests.tsx.snap │ │ │ │ │ ├── Submission │ │ │ │ │ │ ├── Gemini │ │ │ │ │ │ │ ├── createGeminiAssetWithS3Credentials.ts │ │ │ │ │ │ │ ├── getConvectionGeminiKey.ts │ │ │ │ │ │ │ └── getGeminiCredentialsForEnvironment.ts │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── consignmentSetupToSubmission-tests.ts │ │ │ │ │ │ ├── addAssetToConsignment.ts │ │ │ │ │ │ ├── consignmentSetupToSubmission.ts │ │ │ │ │ │ ├── createConsignmentSubmission.ts │ │ │ │ │ │ ├── geminiUploadToS3.ts │ │ │ │ │ │ ├── updateConsignmentSubmission.ts │ │ │ │ │ │ └── uploadPhotoToGemini.ts │ │ │ │ │ ├── Typography │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── places.json │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Fair │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ArtistsExhibitorsWorksLink.tsx │ │ │ │ │ │ ├── FairBoothHeader.tsx │ │ │ │ │ │ ├── FairBoothPreview │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ │ ├── FairBoothPreviewHeader.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ └── FairBoothPreviewHeader-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── FairHeader │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── ArtistsExhibitorsWorksLink-tests.tsx │ │ │ │ │ ├── Fair.tsx │ │ │ │ │ ├── Screens │ │ │ │ │ │ ├── FairArtists.tsx │ │ │ │ │ │ ├── FairArtworks.tsx │ │ │ │ │ │ ├── FairBMWArtActivation.tsx │ │ │ │ │ │ ├── FairBooth.tsx │ │ │ │ │ │ ├── FairDetail.tsx │ │ │ │ │ │ ├── FairExhibitors.tsx │ │ │ │ │ │ ├── FairMoreInfo.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── FairBMWArtActivation-tests.tsx │ │ │ │ │ │ │ ├── FairExhibitors-tests.tsx │ │ │ │ │ │ │ └── FairMoreInfo-tests.tsx │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Fair2 │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── Fair2Artworks.tsx │ │ │ │ │ │ ├── Fair2Collections.tsx │ │ │ │ │ │ ├── Fair2Editorial.tsx │ │ │ │ │ │ ├── Fair2ExhibitorRail.tsx │ │ │ │ │ │ ├── Fair2Exhibitors.tsx │ │ │ │ │ │ ├── Fair2FollowedArtistsRail.tsx │ │ │ │ │ │ ├── Fair2Header.tsx │ │ │ │ │ │ ├── Fair2Timing.tsx │ │ │ │ │ │ └── SimpleTabs.tsx │ │ │ │ │ ├── Fair2.tsx │ │ │ │ │ ├── Fair2AllFollowedArtists.tsx │ │ │ │ │ ├── Fair2MoreInfo.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── Fair2-tests.tsx │ │ │ │ │ │ ├── Fair2AllFollowedArtists-tests.tsx │ │ │ │ │ │ ├── Fair2Artworks-tests.tsx │ │ │ │ │ │ ├── Fair2Collections-tests.tsx │ │ │ │ │ │ ├── Fair2Editorial-tests.tsx │ │ │ │ │ │ ├── Fair2ExhibitorRail-tests.tsx │ │ │ │ │ │ ├── Fair2Exhibitors-tests.tsx │ │ │ │ │ │ ├── Fair2FollowedArtistsRail-tests.tsx │ │ │ │ │ │ ├── Fair2Header-tests.tsx │ │ │ │ │ │ └── Fair2MoreInfo-tests.tsx │ │ │ │ ├── Favorites │ │ │ │ │ ├── FavoriteArtists.tsx │ │ │ │ │ ├── FavoriteArtworks.tsx │ │ │ │ │ ├── FavoriteCategories.tsx │ │ │ │ │ ├── FavoriteShows.tsx │ │ │ │ │ └── Favorites.tsx │ │ │ │ ├── Feature │ │ │ │ │ ├── Feature.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Feature-tests.tsx │ │ │ │ │ └── components │ │ │ │ │ │ ├── FeatureFeaturedLink.tsx │ │ │ │ │ │ ├── FeatureHeader.tsx │ │ │ │ │ │ ├── FeatureMarkdown.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── FeatureMarkdown-tests.tsx │ │ │ │ ├── Home │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ArtworkRail.tsx │ │ │ │ │ │ ├── CollectionsRail.tsx │ │ │ │ │ │ ├── EmailConfirmationBanner.tsx │ │ │ │ │ │ ├── FairsRail.tsx │ │ │ │ │ │ ├── HomeHero.tsx │ │ │ │ │ │ ├── SalesRail.tsx │ │ │ │ │ │ ├── SmallTileRail.tsx │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── CollectionsRail-tests.tsx │ │ │ │ │ │ │ ├── EmailConfirmationBanner-tests.tsx │ │ │ │ │ │ │ ├── FairsRail-tests.tsx │ │ │ │ │ │ │ ├── HomeHero-tests.tsx │ │ │ │ │ │ │ └── SalesRail-tests.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── Home.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── Home-tests.tsx │ │ │ │ │ │ ├── SectionTitle-tests.tsx │ │ │ │ │ │ ├── TabBar-tests.tsx │ │ │ │ │ │ └── homeAnalytics-tests.ts │ │ │ │ │ └── homeAnalytics.ts │ │ │ │ ├── Inbox │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ActiveBids │ │ │ │ │ │ │ ├── ActiveBid.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── ActiveBid-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Conversations │ │ │ │ │ │ │ ├── Avatar.tsx │ │ │ │ │ │ │ ├── Composer.tsx │ │ │ │ │ │ │ ├── ConversationSnippet.tsx │ │ │ │ │ │ │ ├── Conversations.tsx │ │ │ │ │ │ │ ├── ItemInfo.tsx │ │ │ │ │ │ │ ├── Message.tsx │ │ │ │ │ │ │ ├── MessageGroup.tsx │ │ │ │ │ │ │ ├── Messages.tsx │ │ │ │ │ │ │ ├── Preview │ │ │ │ │ │ │ │ ├── ArtworkPreview.tsx │ │ │ │ │ │ │ │ ├── Attachment │ │ │ │ │ │ │ │ │ ├── AttachmentList.tsx │ │ │ │ │ │ │ │ │ ├── AttachmentPreview.tsx │ │ │ │ │ │ │ │ │ ├── FileDownload.tsx │ │ │ │ │ │ │ │ │ ├── ImagePreview.tsx │ │ │ │ │ │ │ │ │ ├── PDFPreview.tsx │ │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ │ ├── AttachmentList-tests.tsx │ │ │ │ │ │ │ │ │ │ ├── FileDownload-tests.tsx │ │ │ │ │ │ │ │ │ │ ├── ImagePreview-tests.tsx │ │ │ │ │ │ │ │ │ │ └── PDFPreview-tests.tsx │ │ │ │ │ │ │ │ ├── ShowPreview.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ ├── ArtworkPreview-tests.tsx │ │ │ │ │ │ │ │ │ └── ShowPreview-tests.tsx │ │ │ │ │ │ │ ├── SendConversationMessage.ts │ │ │ │ │ │ │ ├── TimeSince.tsx │ │ │ │ │ │ │ ├── UpdateConversation.ts │ │ │ │ │ │ │ ├── ZeroStateInbox.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── Avatar-tests.tsx │ │ │ │ │ │ │ │ ├── Composer-tests.tsx │ │ │ │ │ │ │ │ ├── ConversationSnippet-tests.tsx │ │ │ │ │ │ │ │ ├── Conversations-tests.tsx │ │ │ │ │ │ │ │ ├── ItemInfo-tests.tsx │ │ │ │ │ │ │ │ ├── Message-tests.tsx │ │ │ │ │ │ │ │ └── Messages-tests.tsx │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ └── groupMessages.ts │ │ │ │ │ │ └── Typography │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ConversationNavigator.tsx │ │ │ │ │ └── Screens │ │ │ │ │ │ ├── Conversation.tsx │ │ │ │ │ │ ├── ConversationDetails.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── Conversation-tests.tsx │ │ │ │ │ │ └── ConversationDetails-tests.tsx │ │ │ │ ├── Map │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── CitySwitcherButton.tsx │ │ │ │ │ │ ├── PinsShapeLayer.tsx │ │ │ │ │ │ ├── ShowCard.tsx │ │ │ │ │ │ └── UserPositionButton.tsx │ │ │ │ │ ├── EventEmitter.ts │ │ │ │ │ ├── GlobalMap.tsx │ │ │ │ │ ├── MapContainer.tsx │ │ │ │ │ ├── MapRenderer.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── Bucket-tests.ts │ │ │ │ │ │ └── GlobalMap-tests.tsx │ │ │ │ │ ├── bucketCityResults.ts │ │ │ │ │ ├── exhibitionPeriodParser.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── MyAccount │ │ │ │ │ ├── Components │ │ │ │ │ │ └── MyAccountFieldEditScreen.tsx │ │ │ │ │ ├── MyAccount.tsx │ │ │ │ │ ├── MyAccountEditEmail.tsx │ │ │ │ │ ├── MyAccountEditName.tsx │ │ │ │ │ ├── MyAccountEditPassword.tsx │ │ │ │ │ ├── MyAccountEditPhone.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── MyAccount-tests.tsx │ │ │ │ │ │ ├── MyAccountEditEmail-tests.tsx │ │ │ │ │ │ ├── MyAccountEditName-tests.tsx │ │ │ │ │ │ ├── MyAccountEditPassword-tests.tsx │ │ │ │ │ │ └── MyAccountEditPhone-tests.tsx │ │ │ │ │ └── updateMyUserProfile.ts │ │ │ │ ├── MyBids │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ActiveLot.tsx │ │ │ │ │ │ ├── BiddingStatuses.tsx │ │ │ │ │ │ ├── ClosedLot.tsx │ │ │ │ │ │ ├── Lot.tsx │ │ │ │ │ │ ├── MyBidsPlaceholder.tsx │ │ │ │ │ │ ├── NoBids.tsx │ │ │ │ │ │ ├── SaleCard.tsx │ │ │ │ │ │ ├── SaleInfo.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── MyBids.tsx │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ └── MyBidsQuery.ts │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── ActiveLot-tests.tsx │ │ │ │ │ │ ├── ClosedLot-tests.tsx │ │ │ │ │ │ ├── MyBids-tests.tsx │ │ │ │ │ │ ├── MyBids2-tests.tsx │ │ │ │ │ │ └── SaleInfo-tests.tsx │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── timely.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── MyCollection │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ScreenMargin.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── ScreenMargin-tests.tsx │ │ │ │ │ ├── MyCollection.tsx │ │ │ │ │ ├── Screens │ │ │ │ │ │ ├── Artwork │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ │ ├── ArtworkInsights │ │ │ │ │ │ │ │ │ ├── InfoButton.tsx │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkArtistArticles.tsx │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkArtistAuctionResults.tsx │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkArtistMarket.tsx │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkDemandIndex.tsx │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkInsights.tsx │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkPriceEstimate.tsx │ │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ │ ├── InfoButton-tests.tsx │ │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkArtistArticles-tests.tsx │ │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkArtistAuctionResults-tests.tsx │ │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkArtistMarket-tests.tsx │ │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkDemandIndex-tests.tsx │ │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkInsights-tests.tsx │ │ │ │ │ │ │ │ │ │ └── MyCollectionArtworkPriceEstimate-tests.tsx │ │ │ │ │ │ │ │ ├── Field.tsx │ │ │ │ │ │ │ │ ├── MyCollectionArtworkHeader.tsx │ │ │ │ │ │ │ │ ├── MyCollectionArtworkMeta.tsx │ │ │ │ │ │ │ │ ├── WhySell.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ ├── Field-tests.tsx │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkHeader-tests.tsx │ │ │ │ │ │ │ │ │ └── MyCollectionArtworkMeta-tests.tsx │ │ │ │ │ │ │ ├── MyCollectionArtwork.tsx │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ └── MyCollectionArtwork-tests.tsx │ │ │ │ │ │ ├── ArtworkFormModal │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ │ ├── ArrowButton.tsx │ │ │ │ │ │ │ │ ├── ArtistAutosuggest.tsx │ │ │ │ │ │ │ │ ├── ArtistSearchResult.tsx │ │ │ │ │ │ │ │ ├── Dimensions.tsx │ │ │ │ │ │ │ │ ├── MediumPicker.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ ├── ArrowButton-tests.tsx │ │ │ │ │ │ │ │ │ ├── ArtistSearchResult-tests.tsx │ │ │ │ │ │ │ │ │ ├── Dimensions-tests.tsx │ │ │ │ │ │ │ │ │ └── MediumPicker-tests.tsx │ │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ │ └── useArtworkForm-tests.tsx │ │ │ │ │ │ │ │ ├── artworkSchema.tsx │ │ │ │ │ │ │ │ └── useArtworkForm.ts │ │ │ │ │ │ │ ├── MyCollectionArtworkFormModal.tsx │ │ │ │ │ │ │ ├── Screens │ │ │ │ │ │ │ │ ├── MyCollectionArtworkFormAddPhotos.tsx │ │ │ │ │ │ │ │ ├── MyCollectionArtworkFormAdditionalDetails.tsx │ │ │ │ │ │ │ │ ├── MyCollectionArtworkFormMain.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkFormAddPhotos-tests.tsx │ │ │ │ │ │ │ │ │ ├── MyCollectionArtworkFormAdditionalDetails-tests.tsx │ │ │ │ │ │ │ │ │ └── MyCollectionArtworkFormMain-tests.tsx │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ └── MyCollectionArtworkFormModal-tests.tsx │ │ │ │ │ │ ├── ArtworkFullDetails │ │ │ │ │ │ │ └── MyCollectionArtworkFullDetails.tsx │ │ │ │ │ │ └── ArtworkList │ │ │ │ │ │ │ ├── MyCollectionArtworkListItem.tsx │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── MyCollectionArtworkListItem-tests.tsx │ │ │ │ │ ├── State │ │ │ │ │ │ ├── MyCollectionArtworkModel.tsx │ │ │ │ │ │ ├── MyCollectionModel.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── MyCollectionArtworkModel-tests.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── MyCollection-tests.tsx │ │ │ │ │ ├── mutations │ │ │ │ │ │ ├── myCollectionAddArtwork.ts │ │ │ │ │ │ ├── myCollectionDeleteArtwork.ts │ │ │ │ │ │ └── myCollectionEditArtwork.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── cleanArtworkPayload-tests.ts │ │ │ │ │ │ ├── formatArtworkDimensions-tests.tsx │ │ │ │ │ │ ├── formatArtworkMedium-tests.tsx │ │ │ │ │ │ └── formatCentsToDollars-tests.tsx │ │ │ │ │ │ ├── cleanArtworkPayload.ts │ │ │ │ │ │ ├── formatArtworkDimensions.ts │ │ │ │ │ │ ├── formatArtworkMedium.ts │ │ │ │ │ │ └── formatCentsToDollars.ts │ │ │ │ ├── MyProfile │ │ │ │ │ ├── LoggedInUserInfo.tsx │ │ │ │ │ ├── MyProfile.tsx │ │ │ │ │ ├── MyProfilePayment.tsx │ │ │ │ │ ├── MyProfilePaymentNewCreditCard.tsx │ │ │ │ │ ├── MyProfilePushNotifications.tsx │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── LoggedInUserInfo.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── LoggedInUserInfo-tests.tsx │ │ │ │ │ │ ├── MyProfile-tests.tsx │ │ │ │ │ │ └── MyProfilePushNotifications-tests.tsx │ │ │ │ ├── Partner │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── PartnerArtwork.tsx │ │ │ │ │ │ ├── PartnerFollowButton.tsx │ │ │ │ │ │ ├── PartnerHeader.tsx │ │ │ │ │ │ ├── PartnerLocationSection.tsx │ │ │ │ │ │ ├── PartnerMap.tsx │ │ │ │ │ │ ├── PartnerOverview.tsx │ │ │ │ │ │ ├── PartnerShowRailItem.tsx │ │ │ │ │ │ ├── PartnerShows.tsx │ │ │ │ │ │ ├── PartnerShowsRail.tsx │ │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ │ └── PartnerArtwork-fixture.ts │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── PartnerArtwork-tests.tsx │ │ │ │ │ │ │ ├── PartnerHeader-tests.tsx │ │ │ │ │ │ │ ├── PartnerLocationSection-tests.tsx │ │ │ │ │ │ │ ├── PartnerOverview-tests.tsx │ │ │ │ │ │ │ └── PartnerShows-tests.tsx │ │ │ │ │ ├── Partner.tsx │ │ │ │ │ ├── Screens │ │ │ │ │ │ ├── PartnerLocations.tsx │ │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ │ └── PartnerLocations-fixture.ts │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ └── PartnerLocations-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PrivacyRequest │ │ │ │ │ ├── PrivacyRequest.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── PrivacyRequest-tests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Sale │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── RegisterToBidButton.tsx │ │ │ │ │ │ ├── SaleActiveBidItem.tsx │ │ │ │ │ │ ├── SaleActiveBids.tsx │ │ │ │ │ │ ├── SaleArtworkList.tsx │ │ │ │ │ │ ├── SaleArtworkListItem.tsx │ │ │ │ │ │ ├── SaleArtworksRail.tsx │ │ │ │ │ │ ├── SaleHeader.tsx │ │ │ │ │ │ └── SaleLotsList.tsx │ │ │ │ │ ├── Sale.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── RegisterToBidButton-tests.tsx │ │ │ │ │ │ ├── Sale-tests.tsx │ │ │ │ │ │ ├── SaleActiveBidItem-tests.tsx │ │ │ │ │ │ ├── SaleActiveBids-tests.tsx │ │ │ │ │ │ ├── SaleArtworksRail-tests.tsx │ │ │ │ │ │ ├── SaleHeader-tests.tsx │ │ │ │ │ │ ├── SaleLotsList-tests.tsx │ │ │ │ │ │ └── helpers-tests.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── SaleFAQ │ │ │ │ │ ├── SaleFAQ.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── SaleFAQ-tests.tsx │ │ │ │ ├── SaleInfo │ │ │ │ │ ├── SaleInfo.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── SaleInfo-tests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Sales │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── LotsByFollowedArtists.tsx │ │ │ │ │ │ ├── SaleList.tsx │ │ │ │ │ │ ├── SaleListItem.tsx │ │ │ │ │ │ ├── SectionHeader.tsx │ │ │ │ │ │ ├── ZeroState │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── LotsByFollowedArtists-tests.tsx │ │ │ │ │ │ │ ├── SaleList-tests.tsx │ │ │ │ │ │ │ ├── SaleListItem-tests.tsx │ │ │ │ │ │ │ └── SectionHeader-tests.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Search │ │ │ │ │ ├── AutosuggestResults.tsx │ │ │ │ │ ├── CityGuideCTA.tsx │ │ │ │ │ ├── RecentSearches.tsx │ │ │ │ │ ├── Search.tsx │ │ │ │ │ ├── SearchContext.tsx │ │ │ │ │ ├── SearchModel.tsx │ │ │ │ │ ├── SearchResult.tsx │ │ │ │ │ ├── SearchResultList.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── AutosuggestResults-tests.tsx │ │ │ │ │ │ ├── CityGuideCTA-tests.tsx │ │ │ │ │ │ ├── RecentSearches-tests.tsx │ │ │ │ │ │ ├── Search-tests.tsx │ │ │ │ │ │ ├── SearchModel-tests.tsx │ │ │ │ │ │ └── SearchResult-tests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Show │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ShowEventSection.tsx │ │ │ │ │ │ ├── ShowHeader │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ │ ├── Carousel.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ └── Carousel-tests.tsx │ │ │ │ │ │ │ ├── ShowHeader.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ └── ShowHeader-tests.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── Shows │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ │ ├── ShowItem.tsx │ │ │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ │ │ └── ShowItem-tests.tsx │ │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ │ ├── index-tests.tsx │ │ │ │ │ │ │ │ └── nearbyShows-tests.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── TextSection.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── ShowEventSection-tests.tsx │ │ │ │ │ │ │ └── TextSection-tests.tsx │ │ │ │ │ ├── Screens │ │ │ │ │ │ ├── Detail.tsx │ │ │ │ │ │ ├── MoreInfo.tsx │ │ │ │ │ │ ├── ShowArtists.tsx │ │ │ │ │ │ ├── ShowArtworks.tsx │ │ │ │ │ │ └── __tests__ │ │ │ │ │ │ │ ├── Detail-tests.tsx │ │ │ │ │ │ │ ├── MoreInfo-tests.tsx │ │ │ │ │ │ │ ├── ShowArtists-tests.tsx │ │ │ │ │ │ │ └── ShowArtworks-tests.tsx │ │ │ │ │ ├── Show.tsx │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ └── NearbyShowsFixture.ts │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── Show-tests.tsx │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ ├── ShowFixture.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index-tests.ts │ │ │ │ │ │ └── index-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Show2 │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── Show2Artworks.tsx │ │ │ │ │ │ ├── Show2ArtworksEmptyState.tsx │ │ │ │ │ │ ├── Show2ContextCard.tsx │ │ │ │ │ │ ├── Show2Header.tsx │ │ │ │ │ │ ├── Show2Hours.tsx │ │ │ │ │ │ ├── Show2Info.tsx │ │ │ │ │ │ ├── Show2InstallShots.tsx │ │ │ │ │ │ ├── Show2Location.tsx │ │ │ │ │ │ ├── Show2LocationHours.tsx │ │ │ │ │ │ └── Show2ViewingRoom.tsx │ │ │ │ │ ├── Screens │ │ │ │ │ │ └── Show2MoreInfo.tsx │ │ │ │ │ ├── Show2.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── Show2-tests.tsx │ │ │ │ │ │ ├── Show2Artworks-tests.tsx │ │ │ │ │ │ ├── Show2ArtworksEmptyState-tests.tsx │ │ │ │ │ │ ├── Show2ContextCard-tests.tsx │ │ │ │ │ │ ├── Show2Hours-tests.tsx │ │ │ │ │ │ ├── Show2Location-tests.tsx │ │ │ │ │ │ ├── Show2MoreInfo-tests.tsx │ │ │ │ │ │ └── Show2ViewingRoom-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── VanityURL │ │ │ │ │ ├── VanityURLEntity.tsx │ │ │ │ │ ├── VanityURLPossibleRedirect.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── VanityURLEntity-tests.tsx │ │ │ │ │ │ └── VanityURLPossibleRedirect-tests.tsx │ │ │ │ └── ViewingRoom │ │ │ │ │ ├── Components │ │ │ │ │ ├── ViewingRoomArtworkRail.tsx │ │ │ │ │ ├── ViewingRoomHeader.tsx │ │ │ │ │ ├── ViewingRoomSubsections.tsx │ │ │ │ │ ├── ViewingRoomViewWorksButton.tsx │ │ │ │ │ ├── ViewingRoomsHomeRail.tsx │ │ │ │ │ ├── ViewingRoomsListFeatured.tsx │ │ │ │ │ ├── ViewingRoomsListItem.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── ViewingRoomArtworkRail-tests.tsx │ │ │ │ │ │ ├── ViewingRoomHeader-tests.tsx │ │ │ │ │ │ ├── ViewingRoomSubsections-tests.tsx │ │ │ │ │ │ ├── ViewingRoomViewWorksButton-tests.tsx │ │ │ │ │ │ └── ViewingRoomsListFeatured-tests.tsx │ │ │ │ │ ├── ViewingRoom.tsx │ │ │ │ │ ├── ViewingRoomArtwork.tsx │ │ │ │ │ ├── ViewingRoomArtworks.tsx │ │ │ │ │ ├── ViewingRoomsList.tsx │ │ │ │ │ └── __tests__ │ │ │ │ │ ├── ViewingRoom-tests.tsx │ │ │ │ │ ├── ViewingRoomArtwork-tests.tsx │ │ │ │ │ ├── ViewingRoomArtworks-tests.tsx │ │ │ │ │ └── ViewingRoomsList-tests.tsx │ │ │ ├── __fixtures__ │ │ │ │ ├── ArtistFixture.js │ │ │ │ ├── ArtistFixture.ts │ │ │ │ ├── ArtworkBidAction.ts │ │ │ │ ├── ArtworkBidInfo.ts │ │ │ │ ├── ArtworkFixture.ts │ │ │ │ ├── CityFixture.ts │ │ │ │ └── FairBoothShowFixture.ts │ │ │ ├── data │ │ │ │ ├── ScreenSizes │ │ │ │ │ └── screenSizes.tsx │ │ │ │ ├── colors.ts │ │ │ │ ├── constants.ts │ │ │ │ └── fonts.ts │ │ │ ├── navigation │ │ │ │ ├── RouteMatcher.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── RouteMatcher-tests.ts │ │ │ │ │ ├── navigate-tests.tsx │ │ │ │ │ ├── routes-tests.tsx │ │ │ │ │ └── util-tests.ts │ │ │ │ ├── navigate.ts │ │ │ │ ├── routes.tsx │ │ │ │ └── util.ts │ │ │ ├── package.json │ │ │ ├── relay │ │ │ │ ├── createEnvironment.ts │ │ │ │ └── middlewares │ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── cacheMiddleware-tests.ts │ │ │ │ │ ├── checkAuthenticationMiddleware-tests.ts │ │ │ │ │ ├── principalFieldErrorMiddleware-tests.ts │ │ │ │ │ └── rateLimitMiddleware-tests.ts │ │ │ │ │ ├── cacheMiddleware.ts │ │ │ │ │ ├── checkAuthenticationMiddleware.ts │ │ │ │ │ ├── metaphysicsMiddleware.ts │ │ │ │ │ ├── principalFieldErrorMiddleware.ts │ │ │ │ │ ├── rateLimitMiddleware.ts │ │ │ │ │ ├── timingMiddleware.ts │ │ │ │ │ └── types.ts │ │ │ ├── store │ │ │ │ ├── GlobalStore.tsx │ │ │ │ ├── GlobalStoreModel.ts │ │ │ │ ├── NativeModel.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── GppStoreModel-tests.ts │ │ │ │ │ ├── NativeModel-tests.ts │ │ │ │ │ ├── migration-tests.ts │ │ │ │ │ └── persistence-tests.ts │ │ │ │ ├── migration.ts │ │ │ │ └── persistence.ts │ │ │ ├── tests │ │ │ │ ├── MockRelayRenderer.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── MockRelayRenderer-tests.tsx │ │ │ │ │ ├── MockRelayRendererFixtures.tsx │ │ │ │ │ ├── renderRelayTree-tests.tsx │ │ │ │ │ └── renderUntil-tests.tsx │ │ │ │ ├── createMockNetworkLayer │ │ │ │ │ ├── CustomScalars │ │ │ │ │ │ └── formatted_number.ts │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── createMockNetworkLayer-tests.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── extractText.ts │ │ │ │ ├── flushPromiseQueue.ts │ │ │ │ ├── mockEnvironmentPayload.ts │ │ │ │ ├── mockTimezone.tsx │ │ │ │ ├── mockTracking.ts │ │ │ │ ├── renderRelayTree.tsx │ │ │ │ ├── renderUntil.tsx │ │ │ │ ├── renderWithLayout.tsx │ │ │ │ ├── renderWithWrappers.tsx │ │ │ │ └── waitUntil.ts │ │ │ ├── types │ │ │ │ └── SafeAreaInsets.ts │ │ │ └── utils │ │ │ │ ├── AboveTheFoldQueryRenderer.tsx │ │ │ │ ├── ArtworkFilter │ │ │ │ ├── ArtworkFiltersStore.tsx │ │ │ │ ├── FilterArtworksHelpers.ts │ │ │ │ └── __tests__ │ │ │ │ │ ├── ArtworkFiltersStore-tests.tsx │ │ │ │ │ └── FilterArtworksHelpers-tests.tsx │ │ │ │ ├── ArtworkInquiry │ │ │ │ ├── ArtworkInquiryStore.tsx │ │ │ │ ├── ArtworkInquiryTypes.ts │ │ │ │ └── __tests__ │ │ │ │ │ └── ArtworkInquiryStore-tests.tsx │ │ │ │ ├── Autocomplete.ts │ │ │ │ ├── CatchErrors.tsx │ │ │ │ ├── Context.tsx │ │ │ │ ├── ExecutionQueue.ts │ │ │ │ ├── __tests__ │ │ │ │ ├── Autocomplete-tests.ts │ │ │ │ ├── ExecutionQueue-tests.ts │ │ │ │ ├── artworkMediumCategories-tests.ts │ │ │ │ ├── conversions-tests.ts │ │ │ │ ├── extractNodes-tests.ts │ │ │ │ ├── formatText-tests.ts │ │ │ │ ├── getTestWrapper-tests.tsx │ │ │ │ ├── getUrgencytag-tests.ts │ │ │ │ ├── googleMaps-tests.ts │ │ │ │ ├── hardware-tests.ts │ │ │ │ ├── hideBackButtonOnScroll-tests.tsx │ │ │ │ ├── isCloseToBottom-tests.ts │ │ │ │ ├── limitWithCount-tests.tsx │ │ │ │ ├── markdown-kitchen-sink.md │ │ │ │ ├── placeholders-tests.tsx │ │ │ │ ├── plainTextFromTree-tests.tsx │ │ │ │ ├── renderMarkdown-tests.tsx │ │ │ │ ├── renderWithLoadProgress-tests.tsx │ │ │ │ ├── renderWithPlaceholder-tests.tsx │ │ │ │ ├── router-tests.ts │ │ │ │ ├── saleTime-tests.ts │ │ │ │ ├── useEventTiming-tests.tsx │ │ │ │ ├── useGlobalState-tests.tsx │ │ │ │ └── volleyClient-tests.ts │ │ │ │ ├── artworkMediumCategories.ts │ │ │ │ ├── auction │ │ │ │ ├── bidderNeedsIdentityVerification.ts │ │ │ │ └── index.tsx │ │ │ │ ├── conversions.ts │ │ │ │ ├── convertCityToGeoJSON.ts │ │ │ │ ├── devCacheBust.ts │ │ │ │ ├── extractNodes.ts │ │ │ │ ├── formatText.ts │ │ │ │ ├── get.ts │ │ │ │ ├── getTestWrapper.tsx │ │ │ │ ├── getUrgencyTag.ts │ │ │ │ ├── googleMaps.ts │ │ │ │ ├── hardware.ts │ │ │ │ ├── hideBackButtonOnScroll.tsx │ │ │ │ ├── isCloseToBottom.ts │ │ │ │ ├── isCloseToEdge.ts │ │ │ │ ├── limitWithCount.tsx │ │ │ │ ├── normalizeText.ts │ │ │ │ ├── placeholders.tsx │ │ │ │ ├── plainTextFromTree.ts │ │ │ │ ├── renderMarkdown.tsx │ │ │ │ ├── renderWithLoadProgress.tsx │ │ │ │ ├── renderWithPlaceholder.tsx │ │ │ │ ├── router.ts │ │ │ │ ├── saleTime.ts │ │ │ │ ├── track │ │ │ │ ├── index.tsx │ │ │ │ └── schema.ts │ │ │ │ ├── useAppState.tsx │ │ │ │ ├── useEventTiming.tsx │ │ │ │ ├── useGlobalState.ts │ │ │ │ ├── useInterval.ts │ │ │ │ ├── usePrevious.ts │ │ │ │ ├── useScreenDimensions.tsx │ │ │ │ └── volleyClient.ts │ │ ├── palette │ │ │ ├── Theme.tsx │ │ │ ├── elements │ │ │ │ ├── Avatar │ │ │ │ │ ├── Avatar.test.tsx │ │ │ │ │ ├── Avatar.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox │ │ │ │ │ ├── BorderBox.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Box │ │ │ │ │ ├── Box.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Box.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Button │ │ │ │ │ ├── Button.test.tsx │ │ │ │ │ ├── Button.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Cards │ │ │ │ │ ├── CardTag.tsx │ │ │ │ │ ├── LargeCard.tsx │ │ │ │ │ ├── MediumCard.tsx │ │ │ │ │ ├── SmallCard.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Collapse │ │ │ │ │ ├── Collapse.test.tsx │ │ │ │ │ ├── Collapse.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── EntityHeader │ │ │ │ │ ├── EntityHeader.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Flex │ │ │ │ │ ├── Flex.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Join │ │ │ │ │ ├── Join.test.tsx │ │ │ │ │ ├── Join.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Message │ │ │ │ │ ├── Message.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Separator │ │ │ │ │ ├── Separator.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Spacer │ │ │ │ │ ├── Spacer.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Spinner │ │ │ │ │ ├── Spinner.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Text │ │ │ │ │ ├── Text.tsx │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Text.test.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tokens.ts │ │ │ │ ├── Touchable │ │ │ │ │ ├── Touchable.tsx │ │ │ │ │ ├── TouchableWithScale.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Typography │ │ │ │ │ ├── Typography.test.tsx │ │ │ │ │ ├── Typography.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── helpers │ │ │ │ ├── __tests__ │ │ │ │ │ ├── color.test.ts │ │ │ │ │ └── space.test.ts │ │ │ │ ├── color.ts │ │ │ │ ├── index.ts │ │ │ │ ├── space.ts │ │ │ │ └── typography.ts │ │ │ ├── index.tsx │ │ │ ├── package.json │ │ │ ├── platform │ │ │ │ ├── README.md │ │ │ │ ├── fonts │ │ │ │ │ └── fontFamily.ts │ │ │ │ └── primitives.ts │ │ │ └── svgs │ │ │ │ ├── AddCircleFillIcon.tsx │ │ │ │ ├── AddCircleIcon.tsx │ │ │ │ ├── AddIcon.tsx │ │ │ │ ├── AlertIcon.tsx │ │ │ │ ├── ArrowCircleFillIcons.tsx │ │ │ │ ├── ArrowDownCircleIcon.tsx │ │ │ │ ├── ArrowDownIcon.tsx │ │ │ │ ├── ArrowLeftCircleIcon.tsx │ │ │ │ ├── ArrowLeftIcon.tsx │ │ │ │ ├── ArrowRightCircleIcon.tsx │ │ │ │ ├── ArrowRightIcon.tsx │ │ │ │ ├── ArrowUpCircleIcon.tsx │ │ │ │ ├── ArrowUpIcon.tsx │ │ │ │ ├── ArtsyLogoBlackIcon.tsx │ │ │ │ ├── ArtsyLogoWhiteIcon.tsx │ │ │ │ ├── ArtsyMarkBlackIcon.tsx │ │ │ │ ├── ArtsyMarkWhiteIcon.tsx │ │ │ │ ├── ArtworkIcon.tsx │ │ │ │ ├── AuctionIcon.tsx │ │ │ │ ├── BellFillIcon.tsx │ │ │ │ ├── BellIcon.tsx │ │ │ │ ├── BlueChipIcon.tsx │ │ │ │ ├── BriefcaseIcon.tsx │ │ │ │ ├── CertificateIcon.tsx │ │ │ │ ├── CheckCircleFillIcon.tsx │ │ │ │ ├── CheckCircleIcon.tsx │ │ │ │ ├── CheckIcon.tsx │ │ │ │ ├── ChevronIcon.tsx │ │ │ │ ├── CloseCircleIcon.tsx │ │ │ │ ├── CloseIcon.tsx │ │ │ │ ├── CollapseIcon.tsx │ │ │ │ ├── CreditCardIcon.tsx │ │ │ │ ├── DocumentIcon.tsx │ │ │ │ ├── DownloadIcon.tsx │ │ │ │ ├── EditIcon.tsx │ │ │ │ ├── EnterIcon.tsx │ │ │ │ ├── EnvelopeIcon.tsx │ │ │ │ ├── EstablishedIcon.tsx │ │ │ │ ├── ExpandIcon.tsx │ │ │ │ ├── EyeClosedIcon.tsx │ │ │ │ ├── EyeOpenedIcon.tsx │ │ │ │ ├── FacebookIcon.tsx │ │ │ │ ├── FairIcon.tsx │ │ │ │ ├── FilterIcon.tsx │ │ │ │ ├── GenomeIcon.tsx │ │ │ │ ├── GraphIcon.tsx │ │ │ │ ├── HeartFillIcon.tsx │ │ │ │ ├── HeartIcon.tsx │ │ │ │ ├── HomeIcon.tsx │ │ │ │ ├── Icon.tsx │ │ │ │ ├── InfoCircleIcon.tsx │ │ │ │ ├── InstagramIcon.tsx │ │ │ │ ├── InstitutionIcon.tsx │ │ │ │ ├── LoaderIcon.tsx │ │ │ │ ├── LockIcon.tsx │ │ │ │ ├── LogoutIcon.tsx │ │ │ │ ├── MagnifyingGlassIcon.tsx │ │ │ │ ├── MapPinIcon.tsx │ │ │ │ ├── MenuIcon.tsx │ │ │ │ ├── MessageIcon.tsx │ │ │ │ ├── MoreIcon.tsx │ │ │ │ ├── NoArtworkIcon.tsx │ │ │ │ ├── NoImageIcon.tsx │ │ │ │ ├── PageIcon.tsx │ │ │ │ ├── PageViewsIcon.tsx │ │ │ │ ├── PaymentIcon.tsx │ │ │ │ ├── PublicationIcon.tsx │ │ │ │ ├── QuestionCircleIcon.tsx │ │ │ │ ├── ReloadIcon.tsx │ │ │ │ ├── SettingsIcon.tsx │ │ │ │ ├── ShareIcon.tsx │ │ │ │ ├── TagIcon.tsx │ │ │ │ ├── TimerIcon.tsx │ │ │ │ ├── TopEmergingIcon.tsx │ │ │ │ ├── TrashIcon.tsx │ │ │ │ ├── TwitterIcon.tsx │ │ │ │ ├── UserMultiIcon.tsx │ │ │ │ ├── UserSingleIcon.tsx │ │ │ │ ├── VerifiedIcon.tsx │ │ │ │ ├── XCircleIcon.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── sf │ │ │ │ ├── BoltCircleFill.tsx │ │ │ │ ├── BoltFill.tsx │ │ │ │ ├── BookmarkFill.tsx │ │ │ │ ├── ClockFill.tsx │ │ │ │ ├── ExclamationMarkCircleFill.tsx │ │ │ │ ├── README.md │ │ │ │ ├── StarCircleFill.tsx │ │ │ │ ├── Stopwatch.tsx │ │ │ │ └── index.ts │ │ └── setupJest.ts │ ├── tsc-offences.txt │ ├── tsconfig.json │ └── typings │ │ ├── emission.d.ts │ │ ├── graphql.d.ts │ │ ├── node.d.ts │ │ └── styled-components.native.d.ts └── react-native │ ├── .flowconfig │ ├── v0.63.3 │ ├── hint │ │ ├── Libraries │ │ │ ├── ActionSheetIOS │ │ │ │ ├── ActionSheetIOS.hint.json │ │ │ │ └── NativeActionSheetManager.hint.json │ │ │ ├── Alert │ │ │ │ ├── Alert.hint.json │ │ │ │ ├── NativeAlertManager.hint.json │ │ │ │ └── RCTAlertManager.ios.hint.json │ │ │ ├── Animated │ │ │ │ └── src │ │ │ │ │ ├── Animated.hint.json │ │ │ │ │ ├── AnimatedEvent.hint.json │ │ │ │ │ ├── AnimatedImplementation.hint.json │ │ │ │ │ ├── AnimatedMock.hint.json │ │ │ │ │ ├── AnimatedWeb.hint.json │ │ │ │ │ ├── Easing.hint.json │ │ │ │ │ ├── NativeAnimatedHelper.hint.json │ │ │ │ │ ├── NativeAnimatedModule.hint.json │ │ │ │ │ ├── SpringConfig.hint.json │ │ │ │ │ ├── animations │ │ │ │ │ ├── Animation.hint.json │ │ │ │ │ ├── DecayAnimation.hint.json │ │ │ │ │ ├── SpringAnimation.hint.json │ │ │ │ │ └── TimingAnimation.hint.json │ │ │ │ │ ├── bezier.hint.json │ │ │ │ │ ├── components │ │ │ │ │ ├── AnimatedFlatList.hint.json │ │ │ │ │ ├── AnimatedImage.hint.json │ │ │ │ │ ├── AnimatedScrollView.hint.json │ │ │ │ │ ├── AnimatedSectionList.hint.json │ │ │ │ │ ├── AnimatedText.hint.json │ │ │ │ │ └── AnimatedView.hint.json │ │ │ │ │ ├── createAnimatedComponent.hint.json │ │ │ │ │ └── nodes │ │ │ │ │ ├── AnimatedAddition.hint.json │ │ │ │ │ ├── AnimatedDiffClamp.hint.json │ │ │ │ │ ├── AnimatedDivision.hint.json │ │ │ │ │ ├── AnimatedInterpolation.hint.json │ │ │ │ │ ├── AnimatedModulo.hint.json │ │ │ │ │ ├── AnimatedMultiplication.hint.json │ │ │ │ │ ├── AnimatedNode.hint.json │ │ │ │ │ ├── AnimatedProps.hint.json │ │ │ │ │ ├── AnimatedStyle.hint.json │ │ │ │ │ ├── AnimatedSubtraction.hint.json │ │ │ │ │ ├── AnimatedTracking.hint.json │ │ │ │ │ ├── AnimatedTransform.hint.json │ │ │ │ │ ├── AnimatedValue.hint.json │ │ │ │ │ ├── AnimatedValueXY.hint.json │ │ │ │ │ └── AnimatedWithChildren.hint.json │ │ │ ├── AppState │ │ │ │ ├── AppState.hint.json │ │ │ │ └── NativeAppState.hint.json │ │ │ ├── BatchedBridge │ │ │ │ ├── BatchedBridge.hint.json │ │ │ │ ├── MessageQueue.hint.json │ │ │ │ └── NativeModules.hint.json │ │ │ ├── Blob │ │ │ │ ├── Blob.hint.json │ │ │ │ ├── BlobManager.hint.json │ │ │ │ ├── BlobRegistry.hint.json │ │ │ │ ├── BlobTypes.hint.json │ │ │ │ ├── File.hint.json │ │ │ │ ├── FileReader.hint.json │ │ │ │ ├── NativeBlobModule.hint.json │ │ │ │ └── NativeFileReaderModule.hint.json │ │ │ ├── BugReporting │ │ │ │ ├── BugReporting.hint.json │ │ │ │ ├── NativeBugReporting.hint.json │ │ │ │ ├── dumpReactTree.hint.json │ │ │ │ └── getReactData.hint.json │ │ │ ├── Components │ │ │ │ ├── AccessibilityInfo │ │ │ │ │ ├── AccessibilityInfo.ios.hint.json │ │ │ │ │ ├── NativeAccessibilityInfo.hint.json │ │ │ │ │ └── NativeAccessibilityManager.hint.json │ │ │ │ ├── ActivityIndicator │ │ │ │ │ ├── ActivityIndicator.hint.json │ │ │ │ │ └── ActivityIndicatorViewNativeComponent.hint.json │ │ │ │ ├── AppleTV │ │ │ │ │ ├── NativeTVNavigationEventEmitter.hint.json │ │ │ │ │ └── TVEventHandler.hint.json │ │ │ │ ├── Button.hint.json │ │ │ │ ├── CheckBox │ │ │ │ │ ├── AndroidCheckBoxNativeComponent.hint.json │ │ │ │ │ └── CheckBox.ios.hint.json │ │ │ │ ├── Clipboard │ │ │ │ │ ├── Clipboard.hint.json │ │ │ │ │ └── NativeClipboard.hint.json │ │ │ │ ├── DatePicker │ │ │ │ │ ├── DatePickerIOS.ios.hint.json │ │ │ │ │ └── RCTDatePickerNativeComponent.hint.json │ │ │ │ ├── DatePickerAndroid │ │ │ │ │ ├── DatePickerAndroid.ios.hint.json │ │ │ │ │ ├── DatePickerAndroidTypes.hint.json │ │ │ │ │ └── NativeDatePickerAndroid.hint.json │ │ │ │ ├── DrawerAndroid │ │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.hint.json │ │ │ │ │ ├── DrawerLayoutAndroid.android.hint.json │ │ │ │ │ └── DrawerLayoutAndroid.ios.hint.json │ │ │ │ ├── Keyboard │ │ │ │ │ ├── Keyboard.hint.json │ │ │ │ │ ├── KeyboardAvoidingView.hint.json │ │ │ │ │ └── NativeKeyboardObserver.hint.json │ │ │ │ ├── MaskedView │ │ │ │ │ ├── MaskedViewIOS.ios.hint.json │ │ │ │ │ └── RCTMaskedViewNativeComponent.hint.json │ │ │ │ ├── Picker │ │ │ │ │ ├── AndroidDialogPickerNativeComponent.hint.json │ │ │ │ │ ├── AndroidDropdownPickerNativeComponent.hint.json │ │ │ │ │ ├── Picker.hint.json │ │ │ │ │ ├── PickerIOS.ios.hint.json │ │ │ │ │ └── RCTPickerNativeComponent.hint.json │ │ │ │ ├── Pressable │ │ │ │ │ ├── Pressable.hint.json │ │ │ │ │ └── useAndroidRippleForView.hint.json │ │ │ │ ├── ProgressBarAndroid │ │ │ │ │ ├── ProgressBarAndroid.android.hint.json │ │ │ │ │ ├── ProgressBarAndroid.ios.hint.json │ │ │ │ │ └── ProgressBarAndroidNativeComponent.hint.json │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ ├── ProgressViewIOS.ios.hint.json │ │ │ │ │ └── RCTProgressViewNativeComponent.hint.json │ │ │ │ ├── RefreshControl │ │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.hint.json │ │ │ │ │ ├── PullToRefreshViewNativeComponent.hint.json │ │ │ │ │ └── RefreshControl.hint.json │ │ │ │ ├── SafeAreaView │ │ │ │ │ ├── RCTSafeAreaViewNativeComponent.hint.json │ │ │ │ │ └── SafeAreaView.hint.json │ │ │ │ ├── ScrollResponder.hint.json │ │ │ │ ├── ScrollView │ │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.hint.json │ │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollContentViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollView.hint.json │ │ │ │ │ ├── ScrollViewCommands.hint.json │ │ │ │ │ ├── ScrollViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollViewNativeComponentType.hint.json │ │ │ │ │ ├── ScrollViewStickyHeader.hint.json │ │ │ │ │ ├── ScrollViewViewConfig.hint.json │ │ │ │ │ └── processDecelerationRate.hint.json │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ ├── RCTSegmentedControlNativeComponent.hint.json │ │ │ │ │ └── SegmentedControlIOS.ios.hint.json │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider.hint.json │ │ │ │ │ └── SliderNativeComponent.hint.json │ │ │ │ ├── Sound │ │ │ │ │ ├── NativeSoundManager.hint.json │ │ │ │ │ └── SoundManager.hint.json │ │ │ │ ├── StaticContainer.react.hint.json │ │ │ │ ├── StaticRenderer.hint.json │ │ │ │ ├── StatusBar │ │ │ │ │ ├── NativeStatusBarManagerAndroid.hint.json │ │ │ │ │ ├── NativeStatusBarManagerIOS.hint.json │ │ │ │ │ ├── StatusBar.hint.json │ │ │ │ │ └── StatusBarIOS.hint.json │ │ │ │ ├── Switch │ │ │ │ │ ├── AndroidSwitchNativeComponent.hint.json │ │ │ │ │ ├── Switch.hint.json │ │ │ │ │ └── SwitchNativeComponent.hint.json │ │ │ │ ├── TextInput │ │ │ │ │ ├── AndroidTextInputNativeComponent.hint.json │ │ │ │ │ ├── AndroidTextInputViewConfig.hint.json │ │ │ │ │ ├── InputAccessoryView.hint.json │ │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.hint.json │ │ │ │ │ ├── RCTMultilineTextInputNativeComponent.hint.json │ │ │ │ │ ├── RCTSingelineTextInputNativeComponent.hint.json │ │ │ │ │ ├── RCTSinglelineTextInputViewConfig.hint.json │ │ │ │ │ ├── TextInput.hint.json │ │ │ │ │ ├── TextInputNativeCommands.hint.json │ │ │ │ │ └── TextInputState.hint.json │ │ │ │ ├── ToastAndroid │ │ │ │ │ ├── NativeToastAndroid.hint.json │ │ │ │ │ ├── ToastAndroid.android.hint.json │ │ │ │ │ └── ToastAndroid.ios.hint.json │ │ │ │ ├── Touchable │ │ │ │ │ ├── PooledClass.hint.json │ │ │ │ │ ├── TVTouchable.hint.json │ │ │ │ │ ├── Touchable.hint.json │ │ │ │ │ ├── TouchableBounce.hint.json │ │ │ │ │ ├── TouchableHighlight.hint.json │ │ │ │ │ ├── TouchableNativeFeedback.hint.json │ │ │ │ │ ├── TouchableOpacity.hint.json │ │ │ │ │ ├── TouchableWithoutFeedback.hint.json │ │ │ │ │ └── ensurePositiveDelayProps.hint.json │ │ │ │ ├── UnimplementedViews │ │ │ │ │ ├── UnimplementedNativeViewNativeComponent.hint.json │ │ │ │ │ └── UnimplementedView.hint.json │ │ │ │ └── View │ │ │ │ │ ├── ReactNativeStyleAttributes.hint.json │ │ │ │ │ ├── ReactNativeViewAttributes.hint.json │ │ │ │ │ ├── ReactNativeViewViewConfig.hint.json │ │ │ │ │ ├── ReactNativeViewViewConfigAndroid.hint.json │ │ │ │ │ ├── View.hint.json │ │ │ │ │ ├── ViewAccessibility.hint.json │ │ │ │ │ ├── ViewNativeComponent.hint.json │ │ │ │ │ └── ViewPropTypes.hint.json │ │ │ ├── Core │ │ │ │ ├── Devtools │ │ │ │ │ ├── getDevServer.hint.json │ │ │ │ │ ├── openFileInEditor.hint.json │ │ │ │ │ ├── openURLInBrowser.hint.json │ │ │ │ │ ├── parseErrorStack.hint.json │ │ │ │ │ ├── parseHermesStack.hint.json │ │ │ │ │ └── symbolicateStackTrace.hint.json │ │ │ │ ├── ExceptionsManager.hint.json │ │ │ │ ├── InitializeCore.hint.json │ │ │ │ ├── NativeExceptionsManager.hint.json │ │ │ │ ├── ReactFiberErrorDialog.hint.json │ │ │ │ ├── ReactNativeVersion.hint.json │ │ │ │ ├── ReactNativeVersionCheck.hint.json │ │ │ │ ├── SegmentFetcher │ │ │ │ │ └── NativeSegmentFetcher.hint.json │ │ │ │ ├── Timers │ │ │ │ │ ├── JSTimers.hint.json │ │ │ │ │ └── NativeTiming.hint.json │ │ │ │ ├── checkNativeVersion.hint.json │ │ │ │ ├── polyfillPromise.hint.json │ │ │ │ ├── setUpAlert.hint.json │ │ │ │ ├── setUpBatchedBridge.hint.json │ │ │ │ ├── setUpDeveloperTools.hint.json │ │ │ │ ├── setUpErrorHandling.hint.json │ │ │ │ ├── setUpGlobals.hint.json │ │ │ │ ├── setUpNavigator.hint.json │ │ │ │ ├── setUpPerformance.hint.json │ │ │ │ ├── setUpReactDevTools.hint.json │ │ │ │ ├── setUpReactRefresh.hint.json │ │ │ │ ├── setUpRegeneratorRuntime.hint.json │ │ │ │ ├── setUpSegmentFetcher.hint.json │ │ │ │ ├── setUpSystrace.hint.json │ │ │ │ ├── setUpTimers.hint.json │ │ │ │ └── setUpXHR.hint.json │ │ │ ├── DeprecatedPropTypes │ │ │ │ ├── DeprecatedColorPropType.hint.json │ │ │ │ ├── DeprecatedEdgeInsetsPropType.hint.json │ │ │ │ ├── DeprecatedImagePropType.hint.json │ │ │ │ ├── DeprecatedImageSourcePropType.hint.json │ │ │ │ ├── DeprecatedImageStylePropTypes.hint.json │ │ │ │ ├── DeprecatedLayoutPropTypes.hint.json │ │ │ │ ├── DeprecatedPointPropType.hint.json │ │ │ │ ├── DeprecatedShadowPropTypesIOS.hint.json │ │ │ │ ├── DeprecatedStyleSheetPropType.hint.json │ │ │ │ ├── DeprecatedTVViewPropTypes.hint.json │ │ │ │ ├── DeprecatedTextInputPropTypes.hint.json │ │ │ │ ├── DeprecatedTextPropTypes.hint.json │ │ │ │ ├── DeprecatedTextStylePropTypes.hint.json │ │ │ │ ├── DeprecatedTransformPropTypes.hint.json │ │ │ │ ├── DeprecatedViewAccessibility.hint.json │ │ │ │ ├── DeprecatedViewPropTypes.hint.json │ │ │ │ ├── DeprecatedViewStylePropTypes.hint.json │ │ │ │ └── deprecatedCreateStrictShapeTypeChecker.hint.json │ │ │ ├── EventEmitter │ │ │ │ ├── NativeEventEmitter.hint.json │ │ │ │ ├── RCTDeviceEventEmitter.hint.json │ │ │ │ ├── RCTEventEmitter.hint.json │ │ │ │ └── RCTNativeAppEventEmitter.hint.json │ │ │ ├── HeapCapture │ │ │ │ ├── HeapCapture.hint.json │ │ │ │ └── NativeJSCHeapCapture.hint.json │ │ │ ├── Image │ │ │ │ ├── AssetRegistry.hint.json │ │ │ │ ├── AssetSourceResolver.hint.json │ │ │ │ ├── Image.ios.hint.json │ │ │ │ ├── ImageAnalyticsTagContext.hint.json │ │ │ │ ├── ImageBackground.hint.json │ │ │ │ ├── ImagePickerIOS.hint.json │ │ │ │ ├── ImageProps.hint.json │ │ │ │ ├── ImageResizeMode.hint.json │ │ │ │ ├── ImageSource.hint.json │ │ │ │ ├── ImageViewNativeComponent.hint.json │ │ │ │ ├── ImageViewViewConfig.hint.json │ │ │ │ ├── NativeImageLoaderAndroid.hint.json │ │ │ │ ├── NativeImageLoaderIOS.hint.json │ │ │ │ ├── NativeImagePickerIOS.hint.json │ │ │ │ ├── RelativeImageStub.hint.json │ │ │ │ ├── TextInlineImageNativeComponent.hint.json │ │ │ │ ├── assetPathUtils.hint.json │ │ │ │ ├── nativeImageSource.hint.json │ │ │ │ └── resolveAssetSource.hint.json │ │ │ ├── Interaction │ │ │ │ ├── Batchinator.hint.json │ │ │ │ ├── BridgeSpyStallHandler.hint.json │ │ │ │ ├── FrameRateLogger.hint.json │ │ │ │ ├── InteractionManager.hint.json │ │ │ │ ├── InteractionMixin.hint.json │ │ │ │ ├── InteractionStallDebugger.hint.json │ │ │ │ ├── JSEventLoopWatchdog.hint.json │ │ │ │ ├── NativeFrameRateLogger.hint.json │ │ │ │ ├── PanResponder.hint.json │ │ │ │ └── TaskQueue.hint.json │ │ │ ├── LayoutAnimation │ │ │ │ └── LayoutAnimation.hint.json │ │ │ ├── Linking │ │ │ │ ├── Linking.hint.json │ │ │ │ └── NativeLinking.hint.json │ │ │ ├── Lists │ │ │ │ ├── FillRateHelper.hint.json │ │ │ │ ├── FlatList.hint.json │ │ │ │ ├── SectionList.hint.json │ │ │ │ ├── ViewabilityHelper.hint.json │ │ │ │ ├── VirtualizeUtils.hint.json │ │ │ │ ├── VirtualizedList.hint.json │ │ │ │ └── VirtualizedSectionList.hint.json │ │ │ ├── LogBox │ │ │ │ ├── Data │ │ │ │ │ ├── LogBoxData.hint.json │ │ │ │ │ ├── LogBoxLog.hint.json │ │ │ │ │ ├── LogBoxSymbolication.hint.json │ │ │ │ │ └── parseLogBoxLog.hint.json │ │ │ │ ├── LogBox.hint.json │ │ │ │ ├── LogBoxInspectorContainer.hint.json │ │ │ │ ├── LogBoxNotificationContainer.hint.json │ │ │ │ └── UI │ │ │ │ │ ├── AnsiHighlight.hint.json │ │ │ │ │ ├── LogBoxButton.hint.json │ │ │ │ │ ├── LogBoxInspector.hint.json │ │ │ │ │ ├── LogBoxInspectorCodeFrame.hint.json │ │ │ │ │ ├── LogBoxInspectorFooter.hint.json │ │ │ │ │ ├── LogBoxInspectorHeader.hint.json │ │ │ │ │ ├── LogBoxInspectorMessageHeader.hint.json │ │ │ │ │ ├── LogBoxInspectorReactFrames.hint.json │ │ │ │ │ ├── LogBoxInspectorSection.hint.json │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus.hint.json │ │ │ │ │ ├── LogBoxInspectorStackFrame.hint.json │ │ │ │ │ ├── LogBoxInspectorStackFrames.hint.json │ │ │ │ │ ├── LogBoxMessage.hint.json │ │ │ │ │ ├── LogBoxNotification.hint.json │ │ │ │ │ └── LogBoxStyle.hint.json │ │ │ ├── Modal │ │ │ │ ├── Modal.hint.json │ │ │ │ ├── NativeModalManager.hint.json │ │ │ │ └── RCTModalHostViewNativeComponent.hint.json │ │ │ ├── NativeModules │ │ │ │ └── specs │ │ │ │ │ ├── NativeAnimationsDebugModule.hint.json │ │ │ │ │ ├── NativeDevMenu.hint.json │ │ │ │ │ ├── NativeDevSettings.hint.json │ │ │ │ │ ├── NativeDeviceEventManager.hint.json │ │ │ │ │ ├── NativeDialogManagerAndroid.hint.json │ │ │ │ │ ├── NativeLogBox.hint.json │ │ │ │ │ ├── NativeRedBox.hint.json │ │ │ │ │ └── NativeSourceCode.hint.json │ │ │ ├── Network │ │ │ │ ├── FormData.hint.json │ │ │ │ ├── NativeNetworkingAndroid.hint.json │ │ │ │ ├── NativeNetworkingIOS.hint.json │ │ │ │ ├── RCTNetworking.ios.hint.json │ │ │ │ ├── XMLHttpRequest.hint.json │ │ │ │ └── convertRequestBody.hint.json │ │ │ ├── Performance │ │ │ │ ├── NativeJSCSamplingProfiler.hint.json │ │ │ │ ├── PureComponentDebug.hint.json │ │ │ │ ├── QuickPerformanceLogger.hint.json │ │ │ │ ├── SamplingProfiler.hint.json │ │ │ │ └── Systrace.hint.json │ │ │ ├── PermissionsAndroid │ │ │ │ ├── NativePermissionsAndroid.hint.json │ │ │ │ └── PermissionsAndroid.hint.json │ │ │ ├── Pressability │ │ │ │ ├── HoverState.hint.json │ │ │ │ ├── Pressability.hint.json │ │ │ │ ├── PressabilityDebug.hint.json │ │ │ │ └── usePressability.hint.json │ │ │ ├── PushNotificationIOS │ │ │ │ ├── NativePushNotificationManagerIOS.hint.json │ │ │ │ └── PushNotificationIOS.hint.json │ │ │ ├── ReactNative │ │ │ │ ├── AppContainer.hint.json │ │ │ │ ├── AppRegistry.hint.json │ │ │ │ ├── DummyUIManager.hint.json │ │ │ │ ├── FabricUIManager.hint.json │ │ │ │ ├── HeadlessJsTaskError.hint.json │ │ │ │ ├── I18nManager.hint.json │ │ │ │ ├── NativeHeadlessJsTaskSupport.hint.json │ │ │ │ ├── NativeI18nManager.hint.json │ │ │ │ ├── NativeUIManager.hint.json │ │ │ │ ├── PaperUIManager.hint.json │ │ │ │ ├── ReactFabricInternals.hint.json │ │ │ │ ├── RootTagContext.hint.json │ │ │ │ ├── UIManager.hint.json │ │ │ │ ├── UIManagerProperties.hint.json │ │ │ │ ├── getNativeComponentAttributes.hint.json │ │ │ │ ├── queryLayoutByID.hint.json │ │ │ │ ├── renderApplication.hint.json │ │ │ │ └── requireNativeComponent.hint.json │ │ │ ├── Renderer │ │ │ │ └── shims │ │ │ │ │ ├── ReactFabric.hint.json │ │ │ │ │ ├── ReactFeatureFlags.hint.json │ │ │ │ │ ├── ReactNative.hint.json │ │ │ │ │ ├── ReactNativeTypes.hint.json │ │ │ │ │ ├── ReactNativeViewConfigRegistry.hint.json │ │ │ │ │ └── createReactNativeComponentClass.hint.json │ │ │ ├── Settings │ │ │ │ ├── NativeSettingsManager.hint.json │ │ │ │ └── Settings.ios.hint.json │ │ │ ├── Share │ │ │ │ ├── NativeShareModule.hint.json │ │ │ │ └── Share.hint.json │ │ │ ├── Storage │ │ │ │ ├── AsyncStorage.hint.json │ │ │ │ └── NativeAsyncStorage.hint.json │ │ │ ├── StyleSheet │ │ │ │ ├── EdgeInsetsPropType.hint.json │ │ │ │ ├── PlatformColorValueTypes.ios.hint.json │ │ │ │ ├── PlatformColorValueTypesAndroid.hint.json │ │ │ │ ├── PlatformColorValueTypesIOS.hint.json │ │ │ │ ├── PlatformColorValueTypesIOS.ios.hint.json │ │ │ │ ├── PointPropType.hint.json │ │ │ │ ├── Rect.hint.json │ │ │ │ ├── StyleSheet.hint.json │ │ │ │ ├── StyleSheetTypes.hint.json │ │ │ │ ├── StyleSheetValidation.hint.json │ │ │ │ ├── flattenStyle.hint.json │ │ │ │ ├── normalizeColor.hint.json │ │ │ │ ├── processColor.hint.json │ │ │ │ ├── processColorArray.hint.json │ │ │ │ ├── processTransform.hint.json │ │ │ │ ├── setNormalizedColorAlpha.hint.json │ │ │ │ └── splitLayoutProps.hint.json │ │ │ ├── Text │ │ │ │ ├── Text.hint.json │ │ │ │ ├── TextAncestor.hint.json │ │ │ │ └── TextProps.hint.json │ │ │ ├── TurboModule │ │ │ │ ├── RCTExport.hint.json │ │ │ │ ├── TurboModuleRegistry.hint.json │ │ │ │ └── samples │ │ │ │ │ └── NativeSampleTurboModule.hint.json │ │ │ ├── Types │ │ │ │ ├── CodegenTypes.hint.json │ │ │ │ └── CoreEventTypes.hint.json │ │ │ ├── UTFSequence.hint.json │ │ │ ├── Utilities │ │ │ │ ├── Appearance.hint.json │ │ │ │ ├── BackHandler.ios.hint.json │ │ │ │ ├── DebugEnvironment.hint.json │ │ │ │ ├── DevSettings.hint.json │ │ │ │ ├── DeviceInfo.hint.json │ │ │ │ ├── Dimensions.hint.json │ │ │ │ ├── GlobalPerformanceLogger.hint.json │ │ │ │ ├── HMRClient.hint.json │ │ │ │ ├── HMRClientProdShim.hint.json │ │ │ │ ├── JSDevSupportModule.hint.json │ │ │ │ ├── LoadingView.ios.hint.json │ │ │ │ ├── NativeAppearance.hint.json │ │ │ │ ├── NativeDevLoadingView.hint.json │ │ │ │ ├── NativeDeviceInfo.hint.json │ │ │ │ ├── NativeJSDevSupport.hint.json │ │ │ │ ├── NativePlatformConstantsAndroid.hint.json │ │ │ │ ├── NativePlatformConstantsIOS.hint.json │ │ │ │ ├── PerformanceLoggerContext.hint.json │ │ │ │ ├── PixelRatio.hint.json │ │ │ │ ├── Platform.ios.hint.json │ │ │ │ ├── PolyfillFunctions.hint.json │ │ │ │ ├── RCTLog.hint.json │ │ │ │ ├── ReactNativeTestTools.hint.json │ │ │ │ ├── SceneTracker.hint.json │ │ │ │ ├── binaryToBase64.hint.json │ │ │ │ ├── clamp.hint.json │ │ │ │ ├── codegenNativeCommands.hint.json │ │ │ │ ├── codegenNativeComponent.hint.json │ │ │ │ ├── createPerformanceLogger.hint.json │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev.hint.json │ │ │ │ ├── defineLazyObjectProperty.hint.json │ │ │ │ ├── deprecatedPropType.hint.json │ │ │ │ ├── differ │ │ │ │ │ ├── deepDiffer.hint.json │ │ │ │ │ ├── insetsDiffer.hint.json │ │ │ │ │ ├── pointsDiffer.hint.json │ │ │ │ │ └── sizesDiffer.hint.json │ │ │ │ ├── dismissKeyboard.hint.json │ │ │ │ ├── groupByEveryN.hint.json │ │ │ │ ├── infoLog.hint.json │ │ │ │ ├── logError.hint.json │ │ │ │ ├── mapWithSeparator.hint.json │ │ │ │ ├── mergeIntoFast.hint.json │ │ │ │ ├── registerGeneratedViewConfig.hint.json │ │ │ │ ├── setAndForwardRef.hint.json │ │ │ │ ├── stringifySafe.hint.json │ │ │ │ ├── truncate.hint.json │ │ │ │ ├── useColorScheme.hint.json │ │ │ │ ├── useWindowDimensions.hint.json │ │ │ │ ├── verifyComponentAttributeEquivalence.hint.json │ │ │ │ └── warnOnce.hint.json │ │ │ ├── Vibration │ │ │ │ ├── NativeVibration.hint.json │ │ │ │ └── Vibration.hint.json │ │ │ ├── WebSocket │ │ │ │ ├── NativeWebSocketModule.hint.json │ │ │ │ └── WebSocket.hint.json │ │ │ ├── YellowBox │ │ │ │ └── YellowBoxDeprecated.hint.json │ │ │ ├── polyfills │ │ │ │ └── error-guard.hint.json │ │ │ └── vendor │ │ │ │ └── emitter │ │ │ │ ├── EmitterSubscription.hint.json │ │ │ │ ├── EventEmitter.hint.json │ │ │ │ ├── EventSubscription.hint.json │ │ │ │ └── EventSubscriptionVendor.hint.json │ │ ├── __flow__ │ │ │ ├── core.hint.json │ │ │ └── react.hint.json │ │ ├── hint.json │ │ └── index.hint.json │ ├── inputs │ │ ├── IntegrationTests │ │ │ ├── AccessibilityManagerTest.js.flow │ │ │ ├── AppEventsTest.js.flow │ │ │ ├── AsyncStorageTest.js.flow │ │ │ ├── GlobalEvalWithSourceUrlTest.js.flow │ │ │ ├── ImageCachePolicyTest.js.flow │ │ │ ├── ImageSnapshotTest.js.flow │ │ │ ├── IntegrationTestHarnessTest.js.flow │ │ │ ├── IntegrationTestsApp.js.flow │ │ │ ├── LayoutEventsTest.js.flow │ │ │ ├── PromiseTest.js.flow │ │ │ ├── ReactContentSizeUpdateTest.js.flow │ │ │ ├── SimpleSnapshotTest.js.flow │ │ │ ├── SizeFlexibilityUpdateTest.js.flow │ │ │ ├── SyncMethodTest.js.flow │ │ │ ├── TimersTest.js.flow │ │ │ ├── WebSocketTest.js.flow │ │ │ └── websocket_integration_test_server.js.flow │ │ ├── Libraries │ │ │ ├── ActionSheetIOS │ │ │ │ ├── ActionSheetIOS.js.flow │ │ │ │ └── NativeActionSheetManager.js.flow │ │ │ ├── Alert │ │ │ │ ├── Alert.js.flow │ │ │ │ ├── NativeAlertManager.js.flow │ │ │ │ └── RCTAlertManager.ios.js.flow │ │ │ ├── Animated │ │ │ │ └── src │ │ │ │ │ ├── Animated.js.flow │ │ │ │ │ ├── AnimatedEvent.js.flow │ │ │ │ │ ├── AnimatedImplementation.js.flow │ │ │ │ │ ├── AnimatedMock.js.flow │ │ │ │ │ ├── AnimatedWeb.js.flow │ │ │ │ │ ├── Easing.js.flow │ │ │ │ │ ├── NativeAnimatedHelper.js.flow │ │ │ │ │ ├── NativeAnimatedModule.js.flow │ │ │ │ │ ├── SpringConfig.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── bezier-test.js.flow │ │ │ │ │ ├── animations │ │ │ │ │ ├── Animation.js.flow │ │ │ │ │ ├── DecayAnimation.js.flow │ │ │ │ │ ├── SpringAnimation.js.flow │ │ │ │ │ └── TimingAnimation.js.flow │ │ │ │ │ ├── bezier.js.flow │ │ │ │ │ ├── components │ │ │ │ │ ├── AnimatedFlatList.js.flow │ │ │ │ │ ├── AnimatedImage.js.flow │ │ │ │ │ ├── AnimatedScrollView.js.flow │ │ │ │ │ ├── AnimatedSectionList.js.flow │ │ │ │ │ ├── AnimatedText.js.flow │ │ │ │ │ └── AnimatedView.js.flow │ │ │ │ │ ├── createAnimatedComponent.js.flow │ │ │ │ │ └── nodes │ │ │ │ │ ├── AnimatedAddition.js.flow │ │ │ │ │ ├── AnimatedDiffClamp.js.flow │ │ │ │ │ ├── AnimatedDivision.js.flow │ │ │ │ │ ├── AnimatedInterpolation.js.flow │ │ │ │ │ ├── AnimatedModulo.js.flow │ │ │ │ │ ├── AnimatedMultiplication.js.flow │ │ │ │ │ ├── AnimatedNode.js.flow │ │ │ │ │ ├── AnimatedProps.js.flow │ │ │ │ │ ├── AnimatedStyle.js.flow │ │ │ │ │ ├── AnimatedSubtraction.js.flow │ │ │ │ │ ├── AnimatedTracking.js.flow │ │ │ │ │ ├── AnimatedTransform.js.flow │ │ │ │ │ ├── AnimatedValue.js.flow │ │ │ │ │ ├── AnimatedValueXY.js.flow │ │ │ │ │ └── AnimatedWithChildren.js.flow │ │ │ ├── AppState │ │ │ │ ├── AppState.js.flow │ │ │ │ └── NativeAppState.js.flow │ │ │ ├── BatchedBridge │ │ │ │ ├── BatchedBridge.js.flow │ │ │ │ ├── MessageQueue.js.flow │ │ │ │ ├── NativeModules.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ └── MessageQueueTestConfig.js.flow │ │ │ ├── Blob │ │ │ │ ├── Blob.js.flow │ │ │ │ ├── BlobManager.js.flow │ │ │ │ ├── BlobRegistry.js.flow │ │ │ │ ├── BlobTypes.js.flow │ │ │ │ ├── File.js.flow │ │ │ │ ├── FileReader.js.flow │ │ │ │ ├── NativeBlobModule.js.flow │ │ │ │ ├── NativeFileReaderModule.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ ├── BlobModule.js.flow │ │ │ │ │ └── FileReaderModule.js.flow │ │ │ ├── BugReporting │ │ │ │ ├── BugReporting.js.flow │ │ │ │ ├── NativeBugReporting.js.flow │ │ │ │ ├── dumpReactTree.js.flow │ │ │ │ └── getReactData.js.flow │ │ │ ├── Components │ │ │ │ ├── AccessibilityInfo │ │ │ │ │ ├── AccessibilityInfo.ios.js.flow │ │ │ │ │ ├── NativeAccessibilityInfo.js.flow │ │ │ │ │ └── NativeAccessibilityManager.js.flow │ │ │ │ ├── ActivityIndicator │ │ │ │ │ ├── ActivityIndicator.js.flow │ │ │ │ │ ├── ActivityIndicatorViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ActivityIndicator-test.js.flow │ │ │ │ ├── AppleTV │ │ │ │ │ ├── NativeTVNavigationEventEmitter.js.flow │ │ │ │ │ └── TVEventHandler.js.flow │ │ │ │ ├── Button.js.flow │ │ │ │ ├── CheckBox │ │ │ │ │ ├── AndroidCheckBoxNativeComponent.js.flow │ │ │ │ │ └── CheckBox.ios.js.flow │ │ │ │ ├── Clipboard │ │ │ │ │ ├── Clipboard.js.flow │ │ │ │ │ └── NativeClipboard.js.flow │ │ │ │ ├── DatePicker │ │ │ │ │ ├── DatePickerIOS.ios.js.flow │ │ │ │ │ ├── RCTDatePickerNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── DatePickerIOS-test.js.flow │ │ │ │ ├── DatePickerAndroid │ │ │ │ │ ├── DatePickerAndroid.ios.js.flow │ │ │ │ │ ├── DatePickerAndroidTypes.js.flow │ │ │ │ │ └── NativeDatePickerAndroid.js.flow │ │ │ │ ├── DrawerAndroid │ │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.js.flow │ │ │ │ │ ├── DrawerLayoutAndroid.android.js.flow │ │ │ │ │ ├── DrawerLayoutAndroid.ios.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── DrawerAndroid-test.js.flow │ │ │ │ ├── Keyboard │ │ │ │ │ ├── Keyboard.js.flow │ │ │ │ │ ├── KeyboardAvoidingView.js.flow │ │ │ │ │ ├── NativeKeyboardObserver.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Keyboard-test.js.flow │ │ │ │ ├── MaskedView │ │ │ │ │ ├── MaskedViewIOS.ios.js.flow │ │ │ │ │ ├── RCTMaskedViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── MaskedViewIOS-test.js.flow │ │ │ │ ├── Picker │ │ │ │ │ ├── AndroidDialogPickerNativeComponent.js.flow │ │ │ │ │ ├── AndroidDropdownPickerNativeComponent.js.flow │ │ │ │ │ ├── Picker.js.flow │ │ │ │ │ ├── PickerIOS.ios.js.flow │ │ │ │ │ ├── RCTPickerNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Picker-test.js.flow │ │ │ │ ├── Pressable │ │ │ │ │ ├── Pressable.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Pressable-test.js.flow │ │ │ │ │ └── useAndroidRippleForView.js.flow │ │ │ │ ├── ProgressBarAndroid │ │ │ │ │ ├── ProgressBarAndroid.android.js.flow │ │ │ │ │ ├── ProgressBarAndroid.ios.js.flow │ │ │ │ │ ├── ProgressBarAndroidNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ProgressBarAndroid-test.js.flow │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ ├── ProgressViewIOS.ios.js.flow │ │ │ │ │ ├── RCTProgressViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ProgressViewIOS-test.js.flow │ │ │ │ ├── RefreshControl │ │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.js.flow │ │ │ │ │ ├── PullToRefreshViewNativeComponent.js.flow │ │ │ │ │ ├── RefreshControl.js.flow │ │ │ │ │ └── __mocks__ │ │ │ │ │ │ └── RefreshControlMock.js.flow │ │ │ │ ├── SafeAreaView │ │ │ │ │ ├── RCTSafeAreaViewNativeComponent.js.flow │ │ │ │ │ ├── SafeAreaView.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── SafeAreaView-test.js.flow │ │ │ │ ├── ScrollResponder.js.flow │ │ │ │ ├── ScrollView │ │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.js.flow │ │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollContentViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollView.js.flow │ │ │ │ │ ├── ScrollViewCommands.js.flow │ │ │ │ │ ├── ScrollViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollViewNativeComponentType.js.flow │ │ │ │ │ ├── ScrollViewStickyHeader.js.flow │ │ │ │ │ ├── ScrollViewViewConfig.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── ScrollView-test.js.flow │ │ │ │ │ └── processDecelerationRate.js.flow │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ ├── RCTSegmentedControlNativeComponent.js.flow │ │ │ │ │ └── SegmentedControlIOS.ios.js.flow │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider.js.flow │ │ │ │ │ └── SliderNativeComponent.js.flow │ │ │ │ ├── Sound │ │ │ │ │ ├── NativeSoundManager.js.flow │ │ │ │ │ └── SoundManager.js.flow │ │ │ │ ├── StaticContainer.react.js.flow │ │ │ │ ├── StaticRenderer.js.flow │ │ │ │ ├── StatusBar │ │ │ │ │ ├── NativeStatusBarManagerAndroid.js.flow │ │ │ │ │ ├── NativeStatusBarManagerIOS.js.flow │ │ │ │ │ ├── StatusBar.js.flow │ │ │ │ │ └── StatusBarIOS.js.flow │ │ │ │ ├── Switch │ │ │ │ │ ├── AndroidSwitchNativeComponent.js.flow │ │ │ │ │ ├── Switch.js.flow │ │ │ │ │ └── SwitchNativeComponent.js.flow │ │ │ │ ├── TextInput │ │ │ │ │ ├── AndroidTextInputNativeComponent.js.flow │ │ │ │ │ ├── AndroidTextInputViewConfig.js.flow │ │ │ │ │ ├── InputAccessoryView.js.flow │ │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.js.flow │ │ │ │ │ ├── RCTMultilineTextInputNativeComponent.js.flow │ │ │ │ │ ├── RCTSingelineTextInputNativeComponent.js.flow │ │ │ │ │ ├── RCTSinglelineTextInputViewConfig.js.flow │ │ │ │ │ ├── TextInput.js.flow │ │ │ │ │ ├── TextInputNativeCommands.js.flow │ │ │ │ │ ├── TextInputState.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── InputAccessoryView-test.js.flow │ │ │ │ │ │ └── TextInput-test.js.flow │ │ │ │ ├── ToastAndroid │ │ │ │ │ ├── NativeToastAndroid.js.flow │ │ │ │ │ ├── ToastAndroid.android.js.flow │ │ │ │ │ └── ToastAndroid.ios.js.flow │ │ │ │ ├── Touchable │ │ │ │ │ ├── PooledClass.js.flow │ │ │ │ │ ├── TVTouchable.js.flow │ │ │ │ │ ├── Touchable.js.flow │ │ │ │ │ ├── TouchableBounce.js.flow │ │ │ │ │ ├── TouchableHighlight.js.flow │ │ │ │ │ ├── TouchableNativeFeedback.js.flow │ │ │ │ │ ├── TouchableOpacity.js.flow │ │ │ │ │ ├── TouchableWithoutFeedback.js.flow │ │ │ │ │ └── ensurePositiveDelayProps.js.flow │ │ │ │ ├── UnimplementedViews │ │ │ │ │ ├── UnimplementedNativeViewNativeComponent.js.flow │ │ │ │ │ └── UnimplementedView.js.flow │ │ │ │ └── View │ │ │ │ │ ├── ReactNativeStyleAttributes.js.flow │ │ │ │ │ ├── ReactNativeViewAttributes.js.flow │ │ │ │ │ ├── ReactNativeViewViewConfig.js.flow │ │ │ │ │ ├── ReactNativeViewViewConfigAndroid.js.flow │ │ │ │ │ ├── View.js.flow │ │ │ │ │ ├── ViewAccessibility.js.flow │ │ │ │ │ ├── ViewNativeComponent.js.flow │ │ │ │ │ └── ViewPropTypes.js.flow │ │ │ ├── Core │ │ │ │ ├── Devtools │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── parseHermesStack-test.js.flow │ │ │ │ │ ├── getDevServer.js.flow │ │ │ │ │ ├── openFileInEditor.js.flow │ │ │ │ │ ├── openURLInBrowser.js.flow │ │ │ │ │ ├── parseErrorStack.js.flow │ │ │ │ │ ├── parseHermesStack.js.flow │ │ │ │ │ └── symbolicateStackTrace.js.flow │ │ │ │ ├── ExceptionsManager.js.flow │ │ │ │ ├── InitializeCore.js.flow │ │ │ │ ├── NativeExceptionsManager.js.flow │ │ │ │ ├── ReactFiberErrorDialog.js.flow │ │ │ │ ├── ReactNativeVersion.js.flow │ │ │ │ ├── ReactNativeVersionCheck.js.flow │ │ │ │ ├── SegmentFetcher │ │ │ │ │ └── NativeSegmentFetcher.js.flow │ │ │ │ ├── Timers │ │ │ │ │ ├── JSTimers.js.flow │ │ │ │ │ └── NativeTiming.js.flow │ │ │ │ ├── checkNativeVersion.js.flow │ │ │ │ ├── polyfillPromise.js.flow │ │ │ │ ├── setUpAlert.js.flow │ │ │ │ ├── setUpBatchedBridge.js.flow │ │ │ │ ├── setUpDeveloperTools.js.flow │ │ │ │ ├── setUpErrorHandling.js.flow │ │ │ │ ├── setUpGlobals.js.flow │ │ │ │ ├── setUpNavigator.js.flow │ │ │ │ ├── setUpPerformance.js.flow │ │ │ │ ├── setUpReactDevTools.js.flow │ │ │ │ ├── setUpReactRefresh.js.flow │ │ │ │ ├── setUpRegeneratorRuntime.js.flow │ │ │ │ ├── setUpSegmentFetcher.js.flow │ │ │ │ ├── setUpSystrace.js.flow │ │ │ │ ├── setUpTimers.js.flow │ │ │ │ └── setUpXHR.js.flow │ │ │ ├── DeprecatedPropTypes │ │ │ │ ├── DeprecatedColorPropType.js.flow │ │ │ │ ├── DeprecatedEdgeInsetsPropType.js.flow │ │ │ │ ├── DeprecatedImagePropType.js.flow │ │ │ │ ├── DeprecatedImageSourcePropType.js.flow │ │ │ │ ├── DeprecatedImageStylePropTypes.js.flow │ │ │ │ ├── DeprecatedLayoutPropTypes.js.flow │ │ │ │ ├── DeprecatedPointPropType.js.flow │ │ │ │ ├── DeprecatedShadowPropTypesIOS.js.flow │ │ │ │ ├── DeprecatedStyleSheetPropType.js.flow │ │ │ │ ├── DeprecatedTVViewPropTypes.js.flow │ │ │ │ ├── DeprecatedTextInputPropTypes.js.flow │ │ │ │ ├── DeprecatedTextPropTypes.js.flow │ │ │ │ ├── DeprecatedTextStylePropTypes.js.flow │ │ │ │ ├── DeprecatedTransformPropTypes.js.flow │ │ │ │ ├── DeprecatedViewAccessibility.js.flow │ │ │ │ ├── DeprecatedViewPropTypes.js.flow │ │ │ │ ├── DeprecatedViewStylePropTypes.js.flow │ │ │ │ └── deprecatedCreateStrictShapeTypeChecker.js.flow │ │ │ ├── EventEmitter │ │ │ │ ├── NativeEventEmitter.js.flow │ │ │ │ ├── RCTDeviceEventEmitter.js.flow │ │ │ │ ├── RCTEventEmitter.js.flow │ │ │ │ ├── RCTNativeAppEventEmitter.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ └── NativeEventEmitter.js.flow │ │ │ ├── HeapCapture │ │ │ │ ├── HeapCapture.js.flow │ │ │ │ └── NativeJSCHeapCapture.js.flow │ │ │ ├── Image │ │ │ │ ├── AssetRegistry.js.flow │ │ │ │ ├── AssetSourceResolver.js.flow │ │ │ │ ├── Image.ios.js.flow │ │ │ │ ├── ImageAnalyticsTagContext.js.flow │ │ │ │ ├── ImageBackground.js.flow │ │ │ │ ├── ImagePickerIOS.js.flow │ │ │ │ ├── ImageProps.js.flow │ │ │ │ ├── ImageResizeMode.js.flow │ │ │ │ ├── ImageSource.js.flow │ │ │ │ ├── ImageViewNativeComponent.js.flow │ │ │ │ ├── ImageViewViewConfig.js.flow │ │ │ │ ├── NativeImageLoaderAndroid.js.flow │ │ │ │ ├── NativeImageLoaderIOS.js.flow │ │ │ │ ├── NativeImagePickerIOS.js.flow │ │ │ │ ├── RelativeImageStub.js.flow │ │ │ │ ├── TextInlineImageNativeComponent.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── Image-test.js.flow │ │ │ │ ├── assetPathUtils.js.flow │ │ │ │ ├── nativeImageSource.js.flow │ │ │ │ └── resolveAssetSource.js.flow │ │ │ ├── Inspector │ │ │ │ ├── BorderBox.js.flow │ │ │ │ ├── BoxInspector.js.flow │ │ │ │ ├── ElementBox.js.flow │ │ │ │ ├── ElementProperties.js.flow │ │ │ │ ├── Inspector.js.flow │ │ │ │ ├── InspectorOverlay.js.flow │ │ │ │ ├── InspectorPanel.js.flow │ │ │ │ ├── NetworkOverlay.js.flow │ │ │ │ ├── PerformanceOverlay.js.flow │ │ │ │ ├── StyleInspector.js.flow │ │ │ │ └── resolveBoxStyle.js.flow │ │ │ ├── Interaction │ │ │ │ ├── Batchinator.js.flow │ │ │ │ ├── BridgeSpyStallHandler.js.flow │ │ │ │ ├── FrameRateLogger.js.flow │ │ │ │ ├── InteractionManager.js.flow │ │ │ │ ├── InteractionMixin.js.flow │ │ │ │ ├── InteractionStallDebugger.js.flow │ │ │ │ ├── JSEventLoopWatchdog.js.flow │ │ │ │ ├── NativeFrameRateLogger.js.flow │ │ │ │ ├── PanResponder.js.flow │ │ │ │ └── TaskQueue.js.flow │ │ │ ├── JSInspector │ │ │ │ ├── InspectorAgent.js.flow │ │ │ │ ├── JSInspector.js.flow │ │ │ │ └── NetworkAgent.js.flow │ │ │ ├── LayoutAnimation │ │ │ │ └── LayoutAnimation.js.flow │ │ │ ├── Linking │ │ │ │ ├── Linking.js.flow │ │ │ │ └── NativeLinking.js.flow │ │ │ ├── Lists │ │ │ │ ├── FillRateHelper.js.flow │ │ │ │ ├── FlatList.js.flow │ │ │ │ ├── SectionList.js.flow │ │ │ │ ├── ViewabilityHelper.js.flow │ │ │ │ ├── VirtualizeUtils.js.flow │ │ │ │ ├── VirtualizedList.js.flow │ │ │ │ ├── VirtualizedSectionList.js.flow │ │ │ │ └── __flowtests__ │ │ │ │ │ ├── FlatList-flowtest.js.flow │ │ │ │ │ └── SectionList-flowtest.js.flow │ │ │ ├── LogBox │ │ │ │ ├── Data │ │ │ │ │ ├── LogBoxData.js.flow │ │ │ │ │ ├── LogBoxLog.js.flow │ │ │ │ │ ├── LogBoxSymbolication.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── LogBoxData-test.js.flow │ │ │ │ │ │ ├── LogBoxLog-test.js.flow │ │ │ │ │ │ ├── LogBoxSymbolication-test.js.flow │ │ │ │ │ │ └── parseLogBoxLog-test.js.flow │ │ │ │ │ └── parseLogBoxLog.js.flow │ │ │ │ ├── LogBox.js.flow │ │ │ │ ├── LogBoxInspectorContainer.js.flow │ │ │ │ ├── LogBoxNotificationContainer.js.flow │ │ │ │ ├── UI │ │ │ │ │ ├── AnsiHighlight.js.flow │ │ │ │ │ ├── LogBoxButton.js.flow │ │ │ │ │ ├── LogBoxInspector.js.flow │ │ │ │ │ ├── LogBoxInspectorCodeFrame.js.flow │ │ │ │ │ ├── LogBoxInspectorFooter.js.flow │ │ │ │ │ ├── LogBoxInspectorHeader.js.flow │ │ │ │ │ ├── LogBoxInspectorMessageHeader.js.flow │ │ │ │ │ ├── LogBoxInspectorReactFrames.js.flow │ │ │ │ │ ├── LogBoxInspectorSection.js.flow │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus.js.flow │ │ │ │ │ ├── LogBoxInspectorStackFrame.js.flow │ │ │ │ │ ├── LogBoxInspectorStackFrames.js.flow │ │ │ │ │ ├── LogBoxMessage.js.flow │ │ │ │ │ ├── LogBoxNotification.js.flow │ │ │ │ │ ├── LogBoxStyle.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── LogBoxButton-test.js.flow │ │ │ │ │ │ ├── LogBoxInspector-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorCodeFrame-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorFooter-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorHeader-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorMesageHeader-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorReactFrames-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorSection-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorStackFrame-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorStackFrames-test.js.flow │ │ │ │ │ │ ├── LogBoxMessage-test.js.flow │ │ │ │ │ │ └── LogBoxNotification-test.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ ├── LogBox-test.js.flow │ │ │ │ │ ├── LogBoxInspectorContainer-test.js.flow │ │ │ │ │ └── LogBoxNotificationContainer-test.js.flow │ │ │ ├── Modal │ │ │ │ ├── Modal.js.flow │ │ │ │ ├── NativeModalManager.js.flow │ │ │ │ ├── RCTModalHostViewNativeComponent.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ └── Modal-test.js.flow │ │ │ ├── NativeModules │ │ │ │ └── specs │ │ │ │ │ ├── NativeAnimationsDebugModule.js.flow │ │ │ │ │ ├── NativeDevMenu.js.flow │ │ │ │ │ ├── NativeDevSettings.js.flow │ │ │ │ │ ├── NativeDeviceEventManager.js.flow │ │ │ │ │ ├── NativeDialogManagerAndroid.js.flow │ │ │ │ │ ├── NativeLogBox.js.flow │ │ │ │ │ ├── NativeRedBox.js.flow │ │ │ │ │ └── NativeSourceCode.js.flow │ │ │ ├── Network │ │ │ │ ├── FormData.js.flow │ │ │ │ ├── NativeNetworkingAndroid.js.flow │ │ │ │ ├── NativeNetworkingIOS.js.flow │ │ │ │ ├── RCTNetworking.ios.js.flow │ │ │ │ ├── XMLHttpRequest.js.flow │ │ │ │ └── convertRequestBody.js.flow │ │ │ ├── NewAppScreen │ │ │ │ ├── components │ │ │ │ │ ├── Colors.js.flow │ │ │ │ │ ├── DebugInstructions.js.flow │ │ │ │ │ ├── Header.js.flow │ │ │ │ │ ├── LearnMoreLinks.js.flow │ │ │ │ │ └── ReloadInstructions.js.flow │ │ │ │ └── index.js.flow │ │ │ ├── Performance │ │ │ │ ├── NativeJSCSamplingProfiler.js.flow │ │ │ │ ├── PureComponentDebug.js.flow │ │ │ │ ├── QuickPerformanceLogger.js.flow │ │ │ │ ├── SamplingProfiler.js.flow │ │ │ │ └── Systrace.js.flow │ │ │ ├── PermissionsAndroid │ │ │ │ ├── NativePermissionsAndroid.js.flow │ │ │ │ └── PermissionsAndroid.js.flow │ │ │ ├── Pressability │ │ │ │ ├── HoverState.js.flow │ │ │ │ ├── Pressability.js.flow │ │ │ │ ├── PressabilityDebug.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── Pressability-test.js.flow │ │ │ │ └── usePressability.js.flow │ │ │ ├── Promise.js.flow │ │ │ ├── PushNotificationIOS │ │ │ │ ├── NativePushNotificationManagerIOS.js.flow │ │ │ │ └── PushNotificationIOS.js.flow │ │ │ ├── ReactNative │ │ │ │ ├── AppContainer.js.flow │ │ │ │ ├── AppRegistry.js.flow │ │ │ │ ├── DummyUIManager.js.flow │ │ │ │ ├── FabricUIManager.js.flow │ │ │ │ ├── HeadlessJsTaskError.js.flow │ │ │ │ ├── I18nManager.js.flow │ │ │ │ ├── NativeHeadlessJsTaskSupport.js.flow │ │ │ │ ├── NativeI18nManager.js.flow │ │ │ │ ├── NativeUIManager.js.flow │ │ │ │ ├── PaperUIManager.js.flow │ │ │ │ ├── ReactFabricInternals.js.flow │ │ │ │ ├── RootTagContext.js.flow │ │ │ │ ├── UIManager.js.flow │ │ │ │ ├── UIManagerProperties.js.flow │ │ │ │ ├── getNativeComponentAttributes.js.flow │ │ │ │ ├── queryLayoutByID.js.flow │ │ │ │ ├── renderApplication.js.flow │ │ │ │ └── requireNativeComponent.js.flow │ │ │ ├── ReactPrivate │ │ │ │ ├── ReactNativePrivateInitializeCore.js.flow │ │ │ │ └── ReactNativePrivateInterface.js.flow │ │ │ ├── Renderer │ │ │ │ └── shims │ │ │ │ │ ├── ReactFabric.js.flow │ │ │ │ │ ├── ReactFeatureFlags.js.flow │ │ │ │ │ ├── ReactNative.js.flow │ │ │ │ │ ├── ReactNativeTypes.js.flow │ │ │ │ │ ├── ReactNativeViewConfigRegistry.js.flow │ │ │ │ │ └── createReactNativeComponentClass.js.flow │ │ │ ├── Settings │ │ │ │ ├── NativeSettingsManager.js.flow │ │ │ │ └── Settings.ios.js.flow │ │ │ ├── Share │ │ │ │ ├── NativeShareModule.js.flow │ │ │ │ └── Share.js.flow │ │ │ ├── Storage │ │ │ │ ├── AsyncStorage.js.flow │ │ │ │ └── NativeAsyncStorage.js.flow │ │ │ ├── StyleSheet │ │ │ │ ├── EdgeInsetsPropType.js.flow │ │ │ │ ├── PlatformColorValueTypes.ios.js.flow │ │ │ │ ├── PlatformColorValueTypesAndroid.js.flow │ │ │ │ ├── PlatformColorValueTypesIOS.ios.js.flow │ │ │ │ ├── PlatformColorValueTypesIOS.js.flow │ │ │ │ ├── PointPropType.js.flow │ │ │ │ ├── Rect.js.flow │ │ │ │ ├── StyleSheet.js.flow │ │ │ │ ├── StyleSheetTypes.js.flow │ │ │ │ ├── StyleSheetValidation.js.flow │ │ │ │ ├── __flowtests__ │ │ │ │ │ └── StyleSheet-flowtest.js.flow │ │ │ │ ├── flattenStyle.js.flow │ │ │ │ ├── normalizeColor.js.flow │ │ │ │ ├── processColor.js.flow │ │ │ │ ├── processColorArray.js.flow │ │ │ │ ├── processTransform.js.flow │ │ │ │ ├── setNormalizedColorAlpha.js.flow │ │ │ │ └── splitLayoutProps.js.flow │ │ │ ├── Text │ │ │ │ ├── Text.js.flow │ │ │ │ ├── TextAncestor.js.flow │ │ │ │ └── TextProps.js.flow │ │ │ ├── TurboModule │ │ │ │ ├── RCTExport.js.flow │ │ │ │ ├── TurboModuleRegistry.js.flow │ │ │ │ └── samples │ │ │ │ │ └── NativeSampleTurboModule.js.flow │ │ │ ├── Types │ │ │ │ ├── CodegenTypes.js.flow │ │ │ │ └── CoreEventTypes.js.flow │ │ │ ├── UTFSequence.js.flow │ │ │ ├── Utilities │ │ │ │ ├── Appearance.js.flow │ │ │ │ ├── BackHandler.ios.js.flow │ │ │ │ ├── DebugEnvironment.js.flow │ │ │ │ ├── DevSettings.js.flow │ │ │ │ ├── DeviceInfo.js.flow │ │ │ │ ├── Dimensions.js.flow │ │ │ │ ├── GlobalPerformanceLogger.js.flow │ │ │ │ ├── HMRClient.js.flow │ │ │ │ ├── HMRClientProdShim.js.flow │ │ │ │ ├── JSDevSupportModule.js.flow │ │ │ │ ├── LoadingView.ios.js.flow │ │ │ │ ├── NativeAppearance.js.flow │ │ │ │ ├── NativeDevLoadingView.js.flow │ │ │ │ ├── NativeDeviceInfo.js.flow │ │ │ │ ├── NativeJSDevSupport.js.flow │ │ │ │ ├── NativePlatformConstantsAndroid.js.flow │ │ │ │ ├── NativePlatformConstantsIOS.js.flow │ │ │ │ ├── PerformanceLoggerContext.js.flow │ │ │ │ ├── PixelRatio.js.flow │ │ │ │ ├── Platform.ios.js.flow │ │ │ │ ├── PolyfillFunctions.js.flow │ │ │ │ ├── RCTLog.js.flow │ │ │ │ ├── ReactNativeTestTools.js.flow │ │ │ │ ├── SceneTracker.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ ├── setAndForwardRef-test.js.flow │ │ │ │ │ └── stringifySafe-test.js.flow │ │ │ │ ├── binaryToBase64.js.flow │ │ │ │ ├── clamp.js.flow │ │ │ │ ├── codegenNativeCommands.js.flow │ │ │ │ ├── codegenNativeComponent.js.flow │ │ │ │ ├── createPerformanceLogger.js.flow │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev.js.flow │ │ │ │ ├── defineLazyObjectProperty.js.flow │ │ │ │ ├── deprecatedPropType.js.flow │ │ │ │ ├── differ │ │ │ │ │ ├── deepDiffer.js.flow │ │ │ │ │ ├── insetsDiffer.js.flow │ │ │ │ │ ├── pointsDiffer.js.flow │ │ │ │ │ └── sizesDiffer.js.flow │ │ │ │ ├── dismissKeyboard.js.flow │ │ │ │ ├── groupByEveryN.js.flow │ │ │ │ ├── infoLog.js.flow │ │ │ │ ├── logError.js.flow │ │ │ │ ├── mapWithSeparator.js.flow │ │ │ │ ├── mergeIntoFast.js.flow │ │ │ │ ├── registerGeneratedViewConfig.js.flow │ │ │ │ ├── setAndForwardRef.js.flow │ │ │ │ ├── stringifySafe.js.flow │ │ │ │ ├── truncate.js.flow │ │ │ │ ├── useColorScheme.js.flow │ │ │ │ ├── useWindowDimensions.js.flow │ │ │ │ ├── verifyComponentAttributeEquivalence.js.flow │ │ │ │ └── warnOnce.js.flow │ │ │ ├── Vibration │ │ │ │ ├── NativeVibration.js.flow │ │ │ │ └── Vibration.js.flow │ │ │ ├── WebSocket │ │ │ │ ├── NativeWebSocketModule.js.flow │ │ │ │ └── WebSocket.js.flow │ │ │ ├── YellowBox │ │ │ │ ├── YellowBoxDeprecated.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ └── YellowBoxDeprecated-test.js.flow │ │ │ ├── __flowtests__ │ │ │ │ └── ReactNativeTypes-flowtest.js.flow │ │ │ ├── polyfills │ │ │ │ └── error-guard.js.flow │ │ │ ├── promiseRejectionIsError.js.flow │ │ │ └── vendor │ │ │ │ ├── core │ │ │ │ └── ErrorUtils.js.flow │ │ │ │ └── emitter │ │ │ │ ├── EmitterSubscription.js.flow │ │ │ │ ├── EventEmitter.js.flow │ │ │ │ ├── EventSubscription.js.flow │ │ │ │ └── EventSubscriptionVendor.js.flow │ │ ├── RNTester │ │ │ ├── NativeModuleExample │ │ │ │ └── NativeScreenshotManager.js.flow │ │ │ ├── RCTTest │ │ │ │ └── RCTSnapshotNativeComponent.js.flow │ │ │ └── js │ │ │ │ ├── RNTesterApp.ios.js.flow │ │ │ │ ├── components │ │ │ │ ├── ListExampleShared.js.flow │ │ │ │ ├── RNTesterBlock.js.flow │ │ │ │ ├── RNTesterButton.js.flow │ │ │ │ ├── RNTesterExampleFilter.js.flow │ │ │ │ ├── RNTesterExampleList.js.flow │ │ │ │ ├── RNTesterPage.js.flow │ │ │ │ ├── RNTesterSettingSwitchRow.js.flow │ │ │ │ ├── RNTesterTheme.js.flow │ │ │ │ ├── RNTesterTitle.js.flow │ │ │ │ ├── TextInlineView.js.flow │ │ │ │ ├── TextLegend.js.flow │ │ │ │ └── createExamplePage.js.flow │ │ │ │ ├── examples │ │ │ │ ├── Accessibility │ │ │ │ │ └── AccessibilityIOSExample.js.flow │ │ │ │ ├── ActionSheetIOS │ │ │ │ │ └── ActionSheetIOSExample.js.flow │ │ │ │ ├── ActivityIndicator │ │ │ │ │ └── ActivityIndicatorExample.js.flow │ │ │ │ ├── Alert │ │ │ │ │ └── AlertIOSExample.js.flow │ │ │ │ ├── Animated │ │ │ │ │ ├── AnimatedExample.js.flow │ │ │ │ │ └── AnimatedGratuitousApp │ │ │ │ │ │ ├── AnExApp.js.flow │ │ │ │ │ │ ├── AnExBobble.js.flow │ │ │ │ │ │ ├── AnExChained.js.flow │ │ │ │ │ │ ├── AnExScroll.js.flow │ │ │ │ │ │ ├── AnExSet.js.flow │ │ │ │ │ │ └── AnExTilt.js.flow │ │ │ │ ├── AppState │ │ │ │ │ └── AppStateExample.js.flow │ │ │ │ ├── Appearance │ │ │ │ │ └── AppearanceExample.js.flow │ │ │ │ ├── AsyncStorage │ │ │ │ │ └── AsyncStorageExample.js.flow │ │ │ │ ├── Button │ │ │ │ │ └── ButtonExample.js.flow │ │ │ │ ├── CheckBox │ │ │ │ │ └── CheckBoxExample.js.flow │ │ │ │ ├── Clipboard │ │ │ │ │ └── ClipboardExample.js.flow │ │ │ │ ├── Crash │ │ │ │ │ └── CrashExample.js.flow │ │ │ │ ├── DatePicker │ │ │ │ │ └── DatePickerIOSExample.js.flow │ │ │ │ ├── DevSettings │ │ │ │ │ └── DevSettingsExample.js.flow │ │ │ │ ├── Dimensions │ │ │ │ │ └── DimensionsExample.js.flow │ │ │ │ ├── FlatList │ │ │ │ │ └── FlatListExample.js.flow │ │ │ │ ├── Image │ │ │ │ │ ├── ImageCapInsetsExample.js.flow │ │ │ │ │ └── ImageExample.js.flow │ │ │ │ ├── InputAccessoryView │ │ │ │ │ └── InputAccessoryViewExample.js.flow │ │ │ │ ├── JSResponderHandlerExample │ │ │ │ │ └── JSResponderHandlerExample.js.flow │ │ │ │ ├── Layout │ │ │ │ │ ├── LayoutAnimationExample.js.flow │ │ │ │ │ ├── LayoutEventsExample.js.flow │ │ │ │ │ └── LayoutExample.js.flow │ │ │ │ ├── MaskedView │ │ │ │ │ └── MaskedViewExample.js.flow │ │ │ │ ├── Modal │ │ │ │ │ └── ModalExample.js.flow │ │ │ │ ├── MultiColumn │ │ │ │ │ └── MultiColumnExample.js.flow │ │ │ │ ├── NativeAnimation │ │ │ │ │ └── NativeAnimationsExample.js.flow │ │ │ │ ├── NewAppScreen │ │ │ │ │ └── NewAppScreenExample.js.flow │ │ │ │ ├── OrientationChange │ │ │ │ │ └── OrientationChangeExample.js.flow │ │ │ │ ├── PanResponder │ │ │ │ │ └── PanResponderExample.js.flow │ │ │ │ ├── PermissionsAndroid │ │ │ │ │ └── PermissionsExample.js.flow │ │ │ │ ├── Picker │ │ │ │ │ ├── PickerExample.js.flow │ │ │ │ │ └── PickerIOSExample.js.flow │ │ │ │ ├── PlatformColor │ │ │ │ │ └── PlatformColorExample.js.flow │ │ │ │ ├── PointerEvents │ │ │ │ │ └── PointerEventsExample.js.flow │ │ │ │ ├── Pressable │ │ │ │ │ └── PressableExample.js.flow │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ └── ProgressViewIOSExample.js.flow │ │ │ │ ├── PushNotificationIOS │ │ │ │ │ └── PushNotificationIOSExample.js.flow │ │ │ │ ├── RCTRootView │ │ │ │ │ └── RCTRootViewIOSExample.js.flow │ │ │ │ ├── RTL │ │ │ │ │ └── RTLExample.js.flow │ │ │ │ ├── RootViewSizeFlexibilityExample │ │ │ │ │ └── RootViewSizeFlexibilityExampleApp.js.flow │ │ │ │ ├── SafeAreaView │ │ │ │ │ └── SafeAreaViewExample.js.flow │ │ │ │ ├── ScrollView │ │ │ │ │ ├── ScrollViewAnimatedExample.js.flow │ │ │ │ │ ├── ScrollViewExample.js.flow │ │ │ │ │ └── ScrollViewSimpleExample.js.flow │ │ │ │ ├── SectionList │ │ │ │ │ └── SectionListExample.js.flow │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ └── SegmentedControlIOSExample.js.flow │ │ │ │ ├── SetPropertiesExample │ │ │ │ │ └── SetPropertiesExampleApp.js.flow │ │ │ │ ├── Share │ │ │ │ │ └── ShareExample.js.flow │ │ │ │ ├── Slider │ │ │ │ │ └── SliderExample.js.flow │ │ │ │ ├── Snapshot │ │ │ │ │ ├── SnapshotExample.js.flow │ │ │ │ │ └── SnapshotViewIOS.ios.js.flow │ │ │ │ ├── StatusBar │ │ │ │ │ └── StatusBarExample.js.flow │ │ │ │ ├── Switch │ │ │ │ │ └── SwitchExample.js.flow │ │ │ │ ├── TVEventHandler │ │ │ │ │ └── TVEventHandlerExample.js.flow │ │ │ │ ├── Text │ │ │ │ │ └── TextExample.ios.js.flow │ │ │ │ ├── TextInput │ │ │ │ │ ├── TextInputExample.ios.js.flow │ │ │ │ │ └── TextInputSharedExamples.js.flow │ │ │ │ ├── Timer │ │ │ │ │ └── TimerExample.js.flow │ │ │ │ ├── Touchable │ │ │ │ │ └── TouchableExample.js.flow │ │ │ │ ├── Transform │ │ │ │ │ └── TransformExample.js.flow │ │ │ │ ├── TransparentHitTest │ │ │ │ │ └── TransparentHitTestExample.js.flow │ │ │ │ ├── TurboModule │ │ │ │ │ ├── SampleTurboModuleExample.js.flow │ │ │ │ │ └── TurboModuleExample.js.flow │ │ │ │ ├── Vibration │ │ │ │ │ └── VibrationExample.js.flow │ │ │ │ ├── View │ │ │ │ │ └── ViewExample.js.flow │ │ │ │ ├── WebSocket │ │ │ │ │ ├── http_test_server.js.flow │ │ │ │ │ └── websocket_test_server.js.flow │ │ │ │ └── XHR │ │ │ │ │ ├── XHRExample.js.flow │ │ │ │ │ ├── XHRExampleAbortController.js.flow │ │ │ │ │ ├── XHRExampleBinaryUpload.js.flow │ │ │ │ │ ├── XHRExampleDownload.js.flow │ │ │ │ │ ├── XHRExampleFetch.js.flow │ │ │ │ │ └── XHRExampleOnTimeOut.js.flow │ │ │ │ ├── types │ │ │ │ └── RNTesterTypes.js.flow │ │ │ │ └── utils │ │ │ │ ├── RNTesterActions.js.flow │ │ │ │ ├── RNTesterList.ios.js.flow │ │ │ │ ├── RNTesterNavigationReducer.js.flow │ │ │ │ ├── RNTesterStatePersister.js.flow │ │ │ │ └── URIActionMap.js.flow │ │ ├── ReactAndroid │ │ │ └── src │ │ │ │ └── androidTest │ │ │ │ └── js │ │ │ │ ├── NativeIdTestModule.js.flow │ │ │ │ ├── ScrollViewTestModule.js.flow │ │ │ │ └── UIManagerTestModule.js.flow │ │ ├── ReactCommon │ │ │ └── hermes │ │ │ │ └── inspector │ │ │ │ └── tools │ │ │ │ └── msggen │ │ │ │ └── src │ │ │ │ ├── Command.js.flow │ │ │ │ ├── Converters.js.flow │ │ │ │ ├── Event.js.flow │ │ │ │ ├── GeneratedHeader.js.flow │ │ │ │ ├── Graph.js.flow │ │ │ │ ├── HeaderWriter.js.flow │ │ │ │ ├── ImplementationWriter.js.flow │ │ │ │ ├── Property.js.flow │ │ │ │ ├── Type.js.flow │ │ │ │ └── index.js.flow │ │ ├── index.js.flow │ │ ├── jest │ │ │ ├── mockScrollView.js.flow │ │ │ ├── preprocessor.js.flow │ │ │ └── renderer.js.flow │ │ ├── metro.config.js.flow │ │ └── packages │ │ │ ├── babel-plugin-inline-view-configs │ │ │ └── __test_fixtures__ │ │ │ │ ├── failures.js.flow │ │ │ │ └── fixtures.js.flow │ │ │ └── react-native-codegen │ │ │ ├── buck_tests │ │ │ └── generate-tests.js.flow │ │ │ ├── e2e │ │ │ └── __test_fixtures__ │ │ │ │ ├── components │ │ │ │ ├── ArrayPropsNativeComponent.js.flow │ │ │ │ ├── BooleanPropNativeComponent.js.flow │ │ │ │ ├── ColorPropNativeComponent.js.flow │ │ │ │ ├── EdgeInsetsPropNativeComponent.js.flow │ │ │ │ ├── EnumPropNativeComponent.js.flow │ │ │ │ ├── EventNestedObjectPropsNativeComponent.js.flow │ │ │ │ ├── EventPropsNativeComponent.js.flow │ │ │ │ ├── FloatPropsNativeComponent.js.flow │ │ │ │ ├── ImagePropNativeComponent.js.flow │ │ │ │ ├── IntegerPropNativeComponent.js.flow │ │ │ │ ├── InterfaceOnlyNativeComponent.js.flow │ │ │ │ ├── MultiNativePropNativeComponent.js.flow │ │ │ │ ├── NoPropsNoEventsNativeComponent.js.flow │ │ │ │ ├── ObjectPropsNativeComponent.js.flow │ │ │ │ ├── PointPropNativeComponent.js.flow │ │ │ │ └── StringPropNativeComponent.js.flow │ │ │ │ └── modules │ │ │ │ ├── NativeArrayTurboModule.js.flow │ │ │ │ ├── NativeBooleanTurboModule.js.flow │ │ │ │ ├── NativeCallbackTurboModule.js.flow │ │ │ │ ├── NativeNullableTurboModule.js.flow │ │ │ │ ├── NativeNumberTurboModule.js.flow │ │ │ │ ├── NativeObjectTurboModule.js.flow │ │ │ │ ├── NativeOptionalObjectTurboModule.js.flow │ │ │ │ ├── NativePromiseTurboModule.js.flow │ │ │ │ ├── NativeSampleTurboModule.js.flow │ │ │ │ └── NativeStringTurboModule.js.flow │ │ │ └── src │ │ │ ├── CodegenSchema.js.flow │ │ │ ├── SchemaValidator.js.flow │ │ │ ├── __tests__ │ │ │ └── SchemaValidator-test.js.flow │ │ │ ├── cli │ │ │ ├── combine │ │ │ │ ├── combine-js-to-schema-cli.js.flow │ │ │ │ └── combine-js-to-schema.js.flow │ │ │ ├── parser │ │ │ │ ├── parser-cli.js.flow │ │ │ │ └── parser.js.flow │ │ │ └── verify_with_old_codegen.js.flow │ │ │ ├── generators │ │ │ ├── RNCodegen.js.flow │ │ │ ├── components │ │ │ │ ├── CppHelpers.js.flow │ │ │ │ ├── GenerateComponentDescriptorH.js.flow │ │ │ │ ├── GenerateComponentHObjCpp.js.flow │ │ │ │ ├── GenerateEventEmitterCpp.js.flow │ │ │ │ ├── GenerateEventEmitterH.js.flow │ │ │ │ ├── GeneratePropsCpp.js.flow │ │ │ │ ├── GeneratePropsH.js.flow │ │ │ │ ├── GeneratePropsJavaDelegate.js.flow │ │ │ │ ├── GeneratePropsJavaInterface.js.flow │ │ │ │ ├── GenerateShadowNodeCpp.js.flow │ │ │ │ ├── GenerateShadowNodeH.js.flow │ │ │ │ ├── GenerateTests.js.flow │ │ │ │ ├── GenerateViewConfigJs.js.flow │ │ │ │ ├── JavaHelpers.js.flow │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ ├── GenerateComponentDescriptorH-test.js.flow │ │ │ │ │ ├── GenerateComponentHObjCpp-test.js.flow │ │ │ │ │ ├── GenerateEventEmitterCpp-test.js.flow │ │ │ │ │ ├── GenerateEventEmitterH-test.js.flow │ │ │ │ │ ├── GeneratePropsCpp-test.js.flow │ │ │ │ │ ├── GeneratePropsH-test.js.flow │ │ │ │ │ ├── GeneratePropsJavaDelegate-test.js.flow │ │ │ │ │ ├── GeneratePropsJavaInterface-test.js.flow │ │ │ │ │ ├── GenerateShadowNodeCpp-test.js.flow │ │ │ │ │ ├── GenerateShadowNodeH-test.js.flow │ │ │ │ │ ├── GenerateTests-test.js.flow │ │ │ │ │ └── GenerateViewConfigJs-test.js.flow │ │ │ └── modules │ │ │ │ ├── GenerateModuleCpp.js.flow │ │ │ │ ├── GenerateModuleH.js.flow │ │ │ │ ├── GenerateModuleHObjCpp.js.flow │ │ │ │ ├── GenerateModuleMm.js.flow │ │ │ │ ├── ObjCppUtils │ │ │ │ ├── GenerateStructs.js.flow │ │ │ │ ├── GenerateStructsForConstants.js.flow │ │ │ │ └── Utils.js.flow │ │ │ │ ├── __test_fixtures__ │ │ │ │ ├── fixtures.js.flow │ │ │ │ └── structFixtures.js.flow │ │ │ │ └── __tests__ │ │ │ │ ├── GenerateModuleCpp-test.js.flow │ │ │ │ ├── GenerateModuleH-test.js.flow │ │ │ │ ├── GenerateModuleHObjCpp-test.js.flow │ │ │ │ ├── GenerateModuleMm-test.js.flow │ │ │ │ └── GenerateStructs-test.js.flow │ │ │ └── parsers │ │ │ ├── flow │ │ │ ├── components │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ ├── failures.js.flow │ │ │ │ │ └── fixtures.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── component-parser-test.js.flow │ │ │ │ ├── commands.js.flow │ │ │ │ ├── events.js.flow │ │ │ │ ├── extends.js.flow │ │ │ │ ├── index.js.flow │ │ │ │ ├── options.js.flow │ │ │ │ ├── props.js.flow │ │ │ │ └── schema.js.flow │ │ │ ├── index.js.flow │ │ │ ├── modules │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ ├── failures.js.flow │ │ │ │ │ └── fixtures.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── module-parser-test.js.flow │ │ │ │ ├── index.js.flow │ │ │ │ ├── methods.js.flow │ │ │ │ └── schema.js.flow │ │ │ └── utils.js.flow │ │ │ └── schema │ │ │ └── index.js.flow │ ├── outputs │ │ ├── android │ │ │ ├── Libraries │ │ │ │ ├── ActionSheetIOS │ │ │ │ │ ├── ActionSheetIOS.d.ts │ │ │ │ │ └── NativeActionSheetManager.d.ts │ │ │ │ ├── Alert │ │ │ │ │ ├── Alert.d.ts │ │ │ │ │ └── NativeAlertManager.d.ts │ │ │ │ ├── Animated │ │ │ │ │ └── src │ │ │ │ │ │ ├── Animated.d.ts │ │ │ │ │ │ ├── AnimatedEvent.d.ts │ │ │ │ │ │ ├── AnimatedImplementation.d.ts │ │ │ │ │ │ ├── AnimatedMock.d.ts │ │ │ │ │ │ ├── AnimatedWeb.d.ts │ │ │ │ │ │ ├── Easing.d.ts │ │ │ │ │ │ ├── NativeAnimatedHelper.d.ts │ │ │ │ │ │ ├── NativeAnimatedModule.d.ts │ │ │ │ │ │ ├── SpringConfig.d.ts │ │ │ │ │ │ ├── animations │ │ │ │ │ │ ├── Animation.d.ts │ │ │ │ │ │ ├── DecayAnimation.d.ts │ │ │ │ │ │ ├── SpringAnimation.d.ts │ │ │ │ │ │ └── TimingAnimation.d.ts │ │ │ │ │ │ ├── bezier.d.ts │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── AnimatedFlatList.d.ts │ │ │ │ │ │ ├── AnimatedImage.d.ts │ │ │ │ │ │ ├── AnimatedScrollView.d.ts │ │ │ │ │ │ ├── AnimatedSectionList.d.ts │ │ │ │ │ │ ├── AnimatedText.d.ts │ │ │ │ │ │ └── AnimatedView.d.ts │ │ │ │ │ │ ├── createAnimatedComponent.d.ts │ │ │ │ │ │ └── nodes │ │ │ │ │ │ ├── AnimatedAddition.d.ts │ │ │ │ │ │ ├── AnimatedDiffClamp.d.ts │ │ │ │ │ │ ├── AnimatedDivision.d.ts │ │ │ │ │ │ ├── AnimatedInterpolation.d.ts │ │ │ │ │ │ ├── AnimatedModulo.d.ts │ │ │ │ │ │ ├── AnimatedMultiplication.d.ts │ │ │ │ │ │ ├── AnimatedNode.d.ts │ │ │ │ │ │ ├── AnimatedProps.d.ts │ │ │ │ │ │ ├── AnimatedStyle.d.ts │ │ │ │ │ │ ├── AnimatedSubtraction.d.ts │ │ │ │ │ │ ├── AnimatedTracking.d.ts │ │ │ │ │ │ ├── AnimatedTransform.d.ts │ │ │ │ │ │ ├── AnimatedValue.d.ts │ │ │ │ │ │ ├── AnimatedValueXY.d.ts │ │ │ │ │ │ └── AnimatedWithChildren.d.ts │ │ │ │ ├── AppState │ │ │ │ │ ├── AppState.d.ts │ │ │ │ │ └── NativeAppState.d.ts │ │ │ │ ├── BatchedBridge │ │ │ │ │ ├── BatchedBridge.d.ts │ │ │ │ │ ├── MessageQueue.d.ts │ │ │ │ │ └── NativeModules.d.ts │ │ │ │ ├── Blob │ │ │ │ │ ├── Blob.d.ts │ │ │ │ │ ├── BlobManager.d.ts │ │ │ │ │ ├── BlobRegistry.d.ts │ │ │ │ │ ├── BlobTypes.d.ts │ │ │ │ │ ├── File.d.ts │ │ │ │ │ ├── FileReader.d.ts │ │ │ │ │ ├── NativeBlobModule.d.ts │ │ │ │ │ └── NativeFileReaderModule.d.ts │ │ │ │ ├── BugReporting │ │ │ │ │ ├── BugReporting.d.ts │ │ │ │ │ ├── NativeBugReporting.d.ts │ │ │ │ │ ├── dumpReactTree.d.ts │ │ │ │ │ └── getReactData.d.ts │ │ │ │ ├── Components │ │ │ │ │ ├── AccessibilityInfo │ │ │ │ │ │ ├── NativeAccessibilityInfo.d.ts │ │ │ │ │ │ └── NativeAccessibilityManager.d.ts │ │ │ │ │ ├── ActivityIndicator │ │ │ │ │ │ ├── ActivityIndicator.d.ts │ │ │ │ │ │ └── ActivityIndicatorViewNativeComponent.d.ts │ │ │ │ │ ├── AppleTV │ │ │ │ │ │ ├── NativeTVNavigationEventEmitter.d.ts │ │ │ │ │ │ └── TVEventHandler.d.ts │ │ │ │ │ ├── Button.d.ts │ │ │ │ │ ├── CheckBox │ │ │ │ │ │ └── AndroidCheckBoxNativeComponent.d.ts │ │ │ │ │ ├── Clipboard │ │ │ │ │ │ ├── Clipboard.d.ts │ │ │ │ │ │ └── NativeClipboard.d.ts │ │ │ │ │ ├── DatePicker │ │ │ │ │ │ └── RCTDatePickerNativeComponent.d.ts │ │ │ │ │ ├── DatePickerAndroid │ │ │ │ │ │ ├── DatePickerAndroidTypes.d.ts │ │ │ │ │ │ └── NativeDatePickerAndroid.d.ts │ │ │ │ │ ├── DrawerAndroid │ │ │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.d.ts │ │ │ │ │ │ └── DrawerLayoutAndroid.d.ts │ │ │ │ │ ├── Keyboard │ │ │ │ │ │ ├── Keyboard.d.ts │ │ │ │ │ │ ├── KeyboardAvoidingView.d.ts │ │ │ │ │ │ └── NativeKeyboardObserver.d.ts │ │ │ │ │ ├── MaskedView │ │ │ │ │ │ └── RCTMaskedViewNativeComponent.d.ts │ │ │ │ │ ├── Picker │ │ │ │ │ │ ├── AndroidDialogPickerNativeComponent.d.ts │ │ │ │ │ │ ├── AndroidDropdownPickerNativeComponent.d.ts │ │ │ │ │ │ ├── Picker.d.ts │ │ │ │ │ │ └── RCTPickerNativeComponent.d.ts │ │ │ │ │ ├── Pressable │ │ │ │ │ │ ├── Pressable.d.ts │ │ │ │ │ │ └── useAndroidRippleForView.d.ts │ │ │ │ │ ├── ProgressBarAndroid │ │ │ │ │ │ ├── ProgressBarAndroid.d.ts │ │ │ │ │ │ └── ProgressBarAndroidNativeComponent.d.ts │ │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ │ └── RCTProgressViewNativeComponent.d.ts │ │ │ │ │ ├── RefreshControl │ │ │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.d.ts │ │ │ │ │ │ ├── PullToRefreshViewNativeComponent.d.ts │ │ │ │ │ │ └── RefreshControl.d.ts │ │ │ │ │ ├── SafeAreaView │ │ │ │ │ │ ├── RCTSafeAreaViewNativeComponent.d.ts │ │ │ │ │ │ └── SafeAreaView.d.ts │ │ │ │ │ ├── ScrollResponder.d.ts │ │ │ │ │ ├── ScrollView │ │ │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.d.ts │ │ │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.d.ts │ │ │ │ │ │ ├── ScrollContentViewNativeComponent.d.ts │ │ │ │ │ │ ├── ScrollView.d.ts │ │ │ │ │ │ ├── ScrollViewCommands.d.ts │ │ │ │ │ │ ├── ScrollViewNativeComponent.d.ts │ │ │ │ │ │ ├── ScrollViewNativeComponentType.d.ts │ │ │ │ │ │ ├── ScrollViewStickyHeader.d.ts │ │ │ │ │ │ ├── ScrollViewViewConfig.d.ts │ │ │ │ │ │ └── processDecelerationRate.d.ts │ │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ │ └── RCTSegmentedControlNativeComponent.d.ts │ │ │ │ │ ├── Slider │ │ │ │ │ │ ├── Slider.d.ts │ │ │ │ │ │ └── SliderNativeComponent.d.ts │ │ │ │ │ ├── Sound │ │ │ │ │ │ ├── NativeSoundManager.d.ts │ │ │ │ │ │ └── SoundManager.d.ts │ │ │ │ │ ├── StaticRenderer.d.ts │ │ │ │ │ ├── StatusBar │ │ │ │ │ │ ├── NativeStatusBarManagerAndroid.d.ts │ │ │ │ │ │ ├── NativeStatusBarManagerIOS.d.ts │ │ │ │ │ │ ├── StatusBar.d.ts │ │ │ │ │ │ └── StatusBarIOS.d.ts │ │ │ │ │ ├── Switch │ │ │ │ │ │ ├── AndroidSwitchNativeComponent.d.ts │ │ │ │ │ │ ├── Switch.d.ts │ │ │ │ │ │ └── SwitchNativeComponent.d.ts │ │ │ │ │ ├── TextInput │ │ │ │ │ │ ├── AndroidTextInputNativeComponent.d.ts │ │ │ │ │ │ ├── AndroidTextInputViewConfig.d.ts │ │ │ │ │ │ ├── InputAccessoryView.d.ts │ │ │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.d.ts │ │ │ │ │ │ ├── RCTMultilineTextInputNativeComponent.d.ts │ │ │ │ │ │ ├── RCTSingelineTextInputNativeComponent.d.ts │ │ │ │ │ │ ├── RCTSinglelineTextInputViewConfig.d.ts │ │ │ │ │ │ ├── TextInput.d.ts │ │ │ │ │ │ ├── TextInputNativeCommands.d.ts │ │ │ │ │ │ └── TextInputState.d.ts │ │ │ │ │ ├── ToastAndroid │ │ │ │ │ │ ├── NativeToastAndroid.d.ts │ │ │ │ │ │ └── ToastAndroid.d.ts │ │ │ │ │ ├── Touchable │ │ │ │ │ │ ├── PooledClass.d.ts │ │ │ │ │ │ ├── TVTouchable.d.ts │ │ │ │ │ │ ├── Touchable.d.ts │ │ │ │ │ │ ├── TouchableBounce.d.ts │ │ │ │ │ │ ├── TouchableHighlight.d.ts │ │ │ │ │ │ ├── TouchableNativeFeedback.d.ts │ │ │ │ │ │ ├── TouchableOpacity.d.ts │ │ │ │ │ │ ├── TouchableWithoutFeedback.d.ts │ │ │ │ │ │ └── ensurePositiveDelayProps.d.ts │ │ │ │ │ ├── UnimplementedViews │ │ │ │ │ │ ├── UnimplementedNativeViewNativeComponent.d.ts │ │ │ │ │ │ └── UnimplementedView.d.ts │ │ │ │ │ └── View │ │ │ │ │ │ ├── ReactNativeStyleAttributes.d.ts │ │ │ │ │ │ ├── ReactNativeViewAttributes.d.ts │ │ │ │ │ │ ├── ReactNativeViewViewConfig.d.ts │ │ │ │ │ │ ├── ReactNativeViewViewConfigAndroid.d.ts │ │ │ │ │ │ ├── View.d.ts │ │ │ │ │ │ ├── ViewAccessibility.d.ts │ │ │ │ │ │ ├── ViewNativeComponent.d.ts │ │ │ │ │ │ └── ViewPropTypes.d.ts │ │ │ │ ├── Core │ │ │ │ │ ├── Devtools │ │ │ │ │ │ ├── getDevServer.d.ts │ │ │ │ │ │ ├── openFileInEditor.d.ts │ │ │ │ │ │ ├── openURLInBrowser.d.ts │ │ │ │ │ │ ├── parseErrorStack.d.ts │ │ │ │ │ │ ├── parseHermesStack.d.ts │ │ │ │ │ │ └── symbolicateStackTrace.d.ts │ │ │ │ │ ├── ExceptionsManager.d.ts │ │ │ │ │ ├── InitializeCore.d.ts │ │ │ │ │ ├── NativeExceptionsManager.d.ts │ │ │ │ │ ├── ReactFiberErrorDialog.d.ts │ │ │ │ │ ├── ReactNativeVersion.d.ts │ │ │ │ │ ├── ReactNativeVersionCheck.d.ts │ │ │ │ │ ├── SegmentFetcher │ │ │ │ │ │ └── NativeSegmentFetcher.d.ts │ │ │ │ │ ├── Timers │ │ │ │ │ │ ├── JSTimers.d.ts │ │ │ │ │ │ └── NativeTiming.d.ts │ │ │ │ │ ├── checkNativeVersion.d.ts │ │ │ │ │ ├── polyfillPromise.d.ts │ │ │ │ │ ├── setUpAlert.d.ts │ │ │ │ │ ├── setUpBatchedBridge.d.ts │ │ │ │ │ ├── setUpDeveloperTools.d.ts │ │ │ │ │ ├── setUpErrorHandling.d.ts │ │ │ │ │ ├── setUpGlobals.d.ts │ │ │ │ │ ├── setUpNavigator.d.ts │ │ │ │ │ ├── setUpPerformance.d.ts │ │ │ │ │ ├── setUpReactDevTools.d.ts │ │ │ │ │ ├── setUpReactRefresh.d.ts │ │ │ │ │ ├── setUpRegeneratorRuntime.d.ts │ │ │ │ │ ├── setUpSegmentFetcher.d.ts │ │ │ │ │ ├── setUpSystrace.d.ts │ │ │ │ │ ├── setUpTimers.d.ts │ │ │ │ │ └── setUpXHR.d.ts │ │ │ │ ├── DeprecatedPropTypes │ │ │ │ │ ├── DeprecatedColorPropType.d.ts │ │ │ │ │ ├── DeprecatedEdgeInsetsPropType.d.ts │ │ │ │ │ ├── DeprecatedImagePropType.d.ts │ │ │ │ │ ├── DeprecatedImageSourcePropType.d.ts │ │ │ │ │ ├── DeprecatedImageStylePropTypes.d.ts │ │ │ │ │ ├── DeprecatedLayoutPropTypes.d.ts │ │ │ │ │ ├── DeprecatedPointPropType.d.ts │ │ │ │ │ ├── DeprecatedShadowPropTypesIOS.d.ts │ │ │ │ │ ├── DeprecatedStyleSheetPropType.d.ts │ │ │ │ │ ├── DeprecatedTVViewPropTypes.d.ts │ │ │ │ │ ├── DeprecatedTextInputPropTypes.d.ts │ │ │ │ │ ├── DeprecatedTextPropTypes.d.ts │ │ │ │ │ ├── DeprecatedTextStylePropTypes.d.ts │ │ │ │ │ ├── DeprecatedTransformPropTypes.d.ts │ │ │ │ │ ├── DeprecatedViewAccessibility.d.ts │ │ │ │ │ ├── DeprecatedViewPropTypes.d.ts │ │ │ │ │ ├── DeprecatedViewStylePropTypes.d.ts │ │ │ │ │ └── deprecatedCreateStrictShapeTypeChecker.d.ts │ │ │ │ ├── EventEmitter │ │ │ │ │ ├── NativeEventEmitter.d.ts │ │ │ │ │ ├── RCTDeviceEventEmitter.d.ts │ │ │ │ │ ├── RCTEventEmitter.d.ts │ │ │ │ │ └── RCTNativeAppEventEmitter.d.ts │ │ │ │ ├── HeapCapture │ │ │ │ │ ├── HeapCapture.d.ts │ │ │ │ │ └── NativeJSCHeapCapture.d.ts │ │ │ │ ├── Image │ │ │ │ │ ├── AssetRegistry.d.ts │ │ │ │ │ ├── AssetSourceResolver.d.ts │ │ │ │ │ ├── ImageAnalyticsTagContext.d.ts │ │ │ │ │ ├── ImageBackground.d.ts │ │ │ │ │ ├── ImagePickerIOS.d.ts │ │ │ │ │ ├── ImageProps.d.ts │ │ │ │ │ ├── ImageResizeMode.d.ts │ │ │ │ │ ├── ImageSource.d.ts │ │ │ │ │ ├── ImageViewNativeComponent.d.ts │ │ │ │ │ ├── ImageViewViewConfig.d.ts │ │ │ │ │ ├── NativeImageLoaderAndroid.d.ts │ │ │ │ │ ├── NativeImageLoaderIOS.d.ts │ │ │ │ │ ├── NativeImagePickerIOS.d.ts │ │ │ │ │ ├── RelativeImageStub.d.ts │ │ │ │ │ ├── TextInlineImageNativeComponent.d.ts │ │ │ │ │ ├── assetPathUtils.d.ts │ │ │ │ │ ├── nativeImageSource.d.ts │ │ │ │ │ └── resolveAssetSource.d.ts │ │ │ │ ├── Interaction │ │ │ │ │ ├── Batchinator.d.ts │ │ │ │ │ ├── BridgeSpyStallHandler.d.ts │ │ │ │ │ ├── FrameRateLogger.d.ts │ │ │ │ │ ├── InteractionManager.d.ts │ │ │ │ │ ├── InteractionMixin.d.ts │ │ │ │ │ ├── InteractionStallDebugger.d.ts │ │ │ │ │ ├── JSEventLoopWatchdog.d.ts │ │ │ │ │ ├── NativeFrameRateLogger.d.ts │ │ │ │ │ ├── PanResponder.d.ts │ │ │ │ │ └── TaskQueue.d.ts │ │ │ │ ├── LayoutAnimation │ │ │ │ │ └── LayoutAnimation.d.ts │ │ │ │ ├── Linking │ │ │ │ │ ├── Linking.d.ts │ │ │ │ │ └── NativeLinking.d.ts │ │ │ │ ├── Lists │ │ │ │ │ ├── FillRateHelper.d.ts │ │ │ │ │ ├── FlatList.d.ts │ │ │ │ │ ├── SectionList.d.ts │ │ │ │ │ ├── ViewabilityHelper.d.ts │ │ │ │ │ ├── VirtualizeUtils.d.ts │ │ │ │ │ ├── VirtualizedList.d.ts │ │ │ │ │ └── VirtualizedSectionList.d.ts │ │ │ │ ├── LogBox │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── LogBoxData.d.ts │ │ │ │ │ │ ├── LogBoxLog.d.ts │ │ │ │ │ │ ├── LogBoxSymbolication.d.ts │ │ │ │ │ │ └── parseLogBoxLog.d.ts │ │ │ │ │ ├── LogBox.d.ts │ │ │ │ │ ├── LogBoxInspectorContainer.d.ts │ │ │ │ │ ├── LogBoxNotificationContainer.d.ts │ │ │ │ │ └── UI │ │ │ │ │ │ ├── AnsiHighlight.d.ts │ │ │ │ │ │ ├── LogBoxButton.d.ts │ │ │ │ │ │ ├── LogBoxInspector.d.ts │ │ │ │ │ │ ├── LogBoxInspectorCodeFrame.d.ts │ │ │ │ │ │ ├── LogBoxInspectorFooter.d.ts │ │ │ │ │ │ ├── LogBoxInspectorHeader.d.ts │ │ │ │ │ │ ├── LogBoxInspectorMessageHeader.d.ts │ │ │ │ │ │ ├── LogBoxInspectorReactFrames.d.ts │ │ │ │ │ │ ├── LogBoxInspectorSection.d.ts │ │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus.d.ts │ │ │ │ │ │ ├── LogBoxInspectorStackFrame.d.ts │ │ │ │ │ │ ├── LogBoxInspectorStackFrames.d.ts │ │ │ │ │ │ ├── LogBoxMessage.d.ts │ │ │ │ │ │ ├── LogBoxNotification.d.ts │ │ │ │ │ │ └── LogBoxStyle.d.ts │ │ │ │ ├── Modal │ │ │ │ │ ├── Modal.d.ts │ │ │ │ │ ├── NativeModalManager.d.ts │ │ │ │ │ └── RCTModalHostViewNativeComponent.d.ts │ │ │ │ ├── NativeModules │ │ │ │ │ └── specs │ │ │ │ │ │ ├── NativeAnimationsDebugModule.d.ts │ │ │ │ │ │ ├── NativeDevMenu.d.ts │ │ │ │ │ │ ├── NativeDevSettings.d.ts │ │ │ │ │ │ ├── NativeDeviceEventManager.d.ts │ │ │ │ │ │ ├── NativeDialogManagerAndroid.d.ts │ │ │ │ │ │ ├── NativeLogBox.d.ts │ │ │ │ │ │ ├── NativeRedBox.d.ts │ │ │ │ │ │ └── NativeSourceCode.d.ts │ │ │ │ ├── Network │ │ │ │ │ ├── FormData.d.ts │ │ │ │ │ ├── NativeNetworkingAndroid.d.ts │ │ │ │ │ ├── NativeNetworkingIOS.d.ts │ │ │ │ │ ├── XMLHttpRequest.d.ts │ │ │ │ │ └── convertRequestBody.d.ts │ │ │ │ ├── Performance │ │ │ │ │ ├── NativeJSCSamplingProfiler.d.ts │ │ │ │ │ ├── PureComponentDebug.d.ts │ │ │ │ │ ├── QuickPerformanceLogger.d.ts │ │ │ │ │ ├── SamplingProfiler.d.ts │ │ │ │ │ └── Systrace.d.ts │ │ │ │ ├── PermissionsAndroid │ │ │ │ │ ├── NativePermissionsAndroid.d.ts │ │ │ │ │ └── PermissionsAndroid.d.ts │ │ │ │ ├── Pressability │ │ │ │ │ ├── HoverState.d.ts │ │ │ │ │ ├── Pressability.d.ts │ │ │ │ │ ├── PressabilityDebug.d.ts │ │ │ │ │ └── usePressability.d.ts │ │ │ │ ├── PushNotificationIOS │ │ │ │ │ ├── NativePushNotificationManagerIOS.d.ts │ │ │ │ │ └── PushNotificationIOS.d.ts │ │ │ │ ├── ReactNative │ │ │ │ │ ├── AppContainer.d.ts │ │ │ │ │ ├── AppRegistry.d.ts │ │ │ │ │ ├── DummyUIManager.d.ts │ │ │ │ │ ├── FabricUIManager.d.ts │ │ │ │ │ ├── HeadlessJsTaskError.d.ts │ │ │ │ │ ├── I18nManager.d.ts │ │ │ │ │ ├── NativeHeadlessJsTaskSupport.d.ts │ │ │ │ │ ├── NativeI18nManager.d.ts │ │ │ │ │ ├── NativeUIManager.d.ts │ │ │ │ │ ├── PaperUIManager.d.ts │ │ │ │ │ ├── ReactFabricInternals.d.ts │ │ │ │ │ ├── RootTagContext.d.ts │ │ │ │ │ ├── UIManager.d.ts │ │ │ │ │ ├── UIManagerProperties.d.ts │ │ │ │ │ ├── getNativeComponentAttributes.d.ts │ │ │ │ │ ├── queryLayoutByID.d.ts │ │ │ │ │ ├── renderApplication.d.ts │ │ │ │ │ └── requireNativeComponent.d.ts │ │ │ │ ├── Renderer │ │ │ │ │ └── shims │ │ │ │ │ │ ├── ReactFabric.d.ts │ │ │ │ │ │ ├── ReactFeatureFlags.d.ts │ │ │ │ │ │ ├── ReactNative.d.ts │ │ │ │ │ │ ├── ReactNativeTypes.d.ts │ │ │ │ │ │ ├── ReactNativeViewConfigRegistry.d.ts │ │ │ │ │ │ └── createReactNativeComponentClass.d.ts │ │ │ │ ├── Settings │ │ │ │ │ └── NativeSettingsManager.d.ts │ │ │ │ ├── Share │ │ │ │ │ ├── NativeShareModule.d.ts │ │ │ │ │ └── Share.d.ts │ │ │ │ ├── Storage │ │ │ │ │ ├── AsyncStorage.d.ts │ │ │ │ │ └── NativeAsyncStorage.d.ts │ │ │ │ ├── StyleSheet │ │ │ │ │ ├── EdgeInsetsPropType.d.ts │ │ │ │ │ ├── PlatformColorValueTypesAndroid.d.ts │ │ │ │ │ ├── PlatformColorValueTypesIOS.d.ts │ │ │ │ │ ├── PointPropType.d.ts │ │ │ │ │ ├── Rect.d.ts │ │ │ │ │ ├── StyleSheet.d.ts │ │ │ │ │ ├── StyleSheetTypes.d.ts │ │ │ │ │ ├── StyleSheetValidation.d.ts │ │ │ │ │ ├── flattenStyle.d.ts │ │ │ │ │ ├── normalizeColor.d.ts │ │ │ │ │ ├── processColor.d.ts │ │ │ │ │ ├── processColorArray.d.ts │ │ │ │ │ ├── processTransform.d.ts │ │ │ │ │ ├── setNormalizedColorAlpha.d.ts │ │ │ │ │ └── splitLayoutProps.d.ts │ │ │ │ ├── Text │ │ │ │ │ ├── Text.d.ts │ │ │ │ │ ├── TextAncestor.d.ts │ │ │ │ │ └── TextProps.d.ts │ │ │ │ ├── TurboModule │ │ │ │ │ ├── RCTExport.d.ts │ │ │ │ │ ├── TurboModuleRegistry.d.ts │ │ │ │ │ └── samples │ │ │ │ │ │ └── NativeSampleTurboModule.d.ts │ │ │ │ ├── Types │ │ │ │ │ ├── CodegenTypes.d.ts │ │ │ │ │ └── CoreEventTypes.d.ts │ │ │ │ ├── UTFSequence.d.ts │ │ │ │ ├── Utilities │ │ │ │ │ ├── Appearance.d.ts │ │ │ │ │ ├── DebugEnvironment.d.ts │ │ │ │ │ ├── DevSettings.d.ts │ │ │ │ │ ├── DeviceInfo.d.ts │ │ │ │ │ ├── Dimensions.d.ts │ │ │ │ │ ├── GlobalPerformanceLogger.d.ts │ │ │ │ │ ├── HMRClient.d.ts │ │ │ │ │ ├── HMRClientProdShim.d.ts │ │ │ │ │ ├── JSDevSupportModule.d.ts │ │ │ │ │ ├── NativeAppearance.d.ts │ │ │ │ │ ├── NativeDevLoadingView.d.ts │ │ │ │ │ ├── NativeDeviceInfo.d.ts │ │ │ │ │ ├── NativeJSDevSupport.d.ts │ │ │ │ │ ├── NativePlatformConstantsAndroid.d.ts │ │ │ │ │ ├── NativePlatformConstantsIOS.d.ts │ │ │ │ │ ├── PerformanceLoggerContext.d.ts │ │ │ │ │ ├── PixelRatio.d.ts │ │ │ │ │ ├── PolyfillFunctions.d.ts │ │ │ │ │ ├── RCTLog.d.ts │ │ │ │ │ ├── ReactNativeTestTools.d.ts │ │ │ │ │ ├── SceneTracker.d.ts │ │ │ │ │ ├── binaryToBase64.d.ts │ │ │ │ │ ├── clamp.d.ts │ │ │ │ │ ├── codegenNativeCommands.d.ts │ │ │ │ │ ├── codegenNativeComponent.d.ts │ │ │ │ │ ├── createPerformanceLogger.d.ts │ │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev.d.ts │ │ │ │ │ ├── defineLazyObjectProperty.d.ts │ │ │ │ │ ├── deprecatedPropType.d.ts │ │ │ │ │ ├── differ │ │ │ │ │ │ ├── deepDiffer.d.ts │ │ │ │ │ │ ├── insetsDiffer.d.ts │ │ │ │ │ │ ├── pointsDiffer.d.ts │ │ │ │ │ │ └── sizesDiffer.d.ts │ │ │ │ │ ├── dismissKeyboard.d.ts │ │ │ │ │ ├── groupByEveryN.d.ts │ │ │ │ │ ├── infoLog.d.ts │ │ │ │ │ ├── logError.d.ts │ │ │ │ │ ├── mapWithSeparator.d.ts │ │ │ │ │ ├── mergeIntoFast.d.ts │ │ │ │ │ ├── registerGeneratedViewConfig.d.ts │ │ │ │ │ ├── setAndForwardRef.d.ts │ │ │ │ │ ├── stringifySafe.d.ts │ │ │ │ │ ├── truncate.d.ts │ │ │ │ │ ├── useColorScheme.d.ts │ │ │ │ │ ├── useWindowDimensions.d.ts │ │ │ │ │ ├── verifyComponentAttributeEquivalence.d.ts │ │ │ │ │ └── warnOnce.d.ts │ │ │ │ ├── Vibration │ │ │ │ │ ├── NativeVibration.d.ts │ │ │ │ │ └── Vibration.d.ts │ │ │ │ ├── WebSocket │ │ │ │ │ ├── NativeWebSocketModule.d.ts │ │ │ │ │ └── WebSocket.d.ts │ │ │ │ ├── YellowBox │ │ │ │ │ └── YellowBoxDeprecated.d.ts │ │ │ │ └── vendor │ │ │ │ │ └── emitter │ │ │ │ │ ├── EmitterSubscription.d.ts │ │ │ │ │ ├── EventEmitter.d.ts │ │ │ │ │ ├── EventSubscription.d.ts │ │ │ │ │ └── EventSubscriptionVendor.d.ts │ │ │ ├── index.d.ts │ │ │ └── tsconfig.json │ │ └── ios │ │ │ ├── Libraries │ │ │ ├── ActionSheetIOS │ │ │ │ ├── ActionSheetIOS.d.ts │ │ │ │ └── NativeActionSheetManager.d.ts │ │ │ ├── Alert │ │ │ │ ├── Alert.d.ts │ │ │ │ ├── NativeAlertManager.d.ts │ │ │ │ └── RCTAlertManager.d.ts │ │ │ ├── Animated │ │ │ │ └── src │ │ │ │ │ ├── Animated.d.ts │ │ │ │ │ ├── AnimatedEvent.d.ts │ │ │ │ │ ├── AnimatedImplementation.d.ts │ │ │ │ │ ├── AnimatedMock.d.ts │ │ │ │ │ ├── AnimatedWeb.d.ts │ │ │ │ │ ├── Easing.d.ts │ │ │ │ │ ├── NativeAnimatedHelper.d.ts │ │ │ │ │ ├── NativeAnimatedModule.d.ts │ │ │ │ │ ├── SpringConfig.d.ts │ │ │ │ │ ├── animations │ │ │ │ │ ├── Animation.d.ts │ │ │ │ │ ├── DecayAnimation.d.ts │ │ │ │ │ ├── SpringAnimation.d.ts │ │ │ │ │ └── TimingAnimation.d.ts │ │ │ │ │ ├── bezier.d.ts │ │ │ │ │ ├── components │ │ │ │ │ ├── AnimatedFlatList.d.ts │ │ │ │ │ ├── AnimatedImage.d.ts │ │ │ │ │ ├── AnimatedScrollView.d.ts │ │ │ │ │ ├── AnimatedSectionList.d.ts │ │ │ │ │ ├── AnimatedText.d.ts │ │ │ │ │ └── AnimatedView.d.ts │ │ │ │ │ ├── createAnimatedComponent.d.ts │ │ │ │ │ └── nodes │ │ │ │ │ ├── AnimatedAddition.d.ts │ │ │ │ │ ├── AnimatedDiffClamp.d.ts │ │ │ │ │ ├── AnimatedDivision.d.ts │ │ │ │ │ ├── AnimatedInterpolation.d.ts │ │ │ │ │ ├── AnimatedModulo.d.ts │ │ │ │ │ ├── AnimatedMultiplication.d.ts │ │ │ │ │ ├── AnimatedNode.d.ts │ │ │ │ │ ├── AnimatedProps.d.ts │ │ │ │ │ ├── AnimatedStyle.d.ts │ │ │ │ │ ├── AnimatedSubtraction.d.ts │ │ │ │ │ ├── AnimatedTracking.d.ts │ │ │ │ │ ├── AnimatedTransform.d.ts │ │ │ │ │ ├── AnimatedValue.d.ts │ │ │ │ │ ├── AnimatedValueXY.d.ts │ │ │ │ │ └── AnimatedWithChildren.d.ts │ │ │ ├── AppState │ │ │ │ ├── AppState.d.ts │ │ │ │ └── NativeAppState.d.ts │ │ │ ├── BatchedBridge │ │ │ │ ├── BatchedBridge.d.ts │ │ │ │ ├── MessageQueue.d.ts │ │ │ │ └── NativeModules.d.ts │ │ │ ├── Blob │ │ │ │ ├── Blob.d.ts │ │ │ │ ├── BlobManager.d.ts │ │ │ │ ├── BlobRegistry.d.ts │ │ │ │ ├── BlobTypes.d.ts │ │ │ │ ├── File.d.ts │ │ │ │ ├── FileReader.d.ts │ │ │ │ ├── NativeBlobModule.d.ts │ │ │ │ └── NativeFileReaderModule.d.ts │ │ │ ├── BugReporting │ │ │ │ ├── BugReporting.d.ts │ │ │ │ ├── NativeBugReporting.d.ts │ │ │ │ ├── dumpReactTree.d.ts │ │ │ │ └── getReactData.d.ts │ │ │ ├── Components │ │ │ │ ├── AccessibilityInfo │ │ │ │ │ ├── AccessibilityInfo.d.ts │ │ │ │ │ ├── NativeAccessibilityInfo.d.ts │ │ │ │ │ └── NativeAccessibilityManager.d.ts │ │ │ │ ├── ActivityIndicator │ │ │ │ │ ├── ActivityIndicator.d.ts │ │ │ │ │ └── ActivityIndicatorViewNativeComponent.d.ts │ │ │ │ ├── AppleTV │ │ │ │ │ ├── NativeTVNavigationEventEmitter.d.ts │ │ │ │ │ └── TVEventHandler.d.ts │ │ │ │ ├── Button.d.ts │ │ │ │ ├── CheckBox │ │ │ │ │ ├── AndroidCheckBoxNativeComponent.d.ts │ │ │ │ │ └── CheckBox.d.ts │ │ │ │ ├── Clipboard │ │ │ │ │ ├── Clipboard.d.ts │ │ │ │ │ └── NativeClipboard.d.ts │ │ │ │ ├── DatePicker │ │ │ │ │ ├── DatePickerIOS.d.ts │ │ │ │ │ └── RCTDatePickerNativeComponent.d.ts │ │ │ │ ├── DatePickerAndroid │ │ │ │ │ ├── DatePickerAndroid.d.ts │ │ │ │ │ ├── DatePickerAndroidTypes.d.ts │ │ │ │ │ └── NativeDatePickerAndroid.d.ts │ │ │ │ ├── DrawerAndroid │ │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.d.ts │ │ │ │ │ └── DrawerLayoutAndroid.d.ts │ │ │ │ ├── Keyboard │ │ │ │ │ ├── Keyboard.d.ts │ │ │ │ │ ├── KeyboardAvoidingView.d.ts │ │ │ │ │ └── NativeKeyboardObserver.d.ts │ │ │ │ ├── MaskedView │ │ │ │ │ ├── MaskedViewIOS.d.ts │ │ │ │ │ └── RCTMaskedViewNativeComponent.d.ts │ │ │ │ ├── Picker │ │ │ │ │ ├── AndroidDialogPickerNativeComponent.d.ts │ │ │ │ │ ├── AndroidDropdownPickerNativeComponent.d.ts │ │ │ │ │ ├── Picker.d.ts │ │ │ │ │ ├── PickerIOS.d.ts │ │ │ │ │ └── RCTPickerNativeComponent.d.ts │ │ │ │ ├── Pressable │ │ │ │ │ ├── Pressable.d.ts │ │ │ │ │ └── useAndroidRippleForView.d.ts │ │ │ │ ├── ProgressBarAndroid │ │ │ │ │ ├── ProgressBarAndroid.d.ts │ │ │ │ │ └── ProgressBarAndroidNativeComponent.d.ts │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ ├── ProgressViewIOS.d.ts │ │ │ │ │ └── RCTProgressViewNativeComponent.d.ts │ │ │ │ ├── RefreshControl │ │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.d.ts │ │ │ │ │ ├── PullToRefreshViewNativeComponent.d.ts │ │ │ │ │ └── RefreshControl.d.ts │ │ │ │ ├── SafeAreaView │ │ │ │ │ ├── RCTSafeAreaViewNativeComponent.d.ts │ │ │ │ │ └── SafeAreaView.d.ts │ │ │ │ ├── ScrollResponder.d.ts │ │ │ │ ├── ScrollView │ │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.d.ts │ │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.d.ts │ │ │ │ │ ├── ScrollContentViewNativeComponent.d.ts │ │ │ │ │ ├── ScrollView.d.ts │ │ │ │ │ ├── ScrollViewCommands.d.ts │ │ │ │ │ ├── ScrollViewNativeComponent.d.ts │ │ │ │ │ ├── ScrollViewNativeComponentType.d.ts │ │ │ │ │ ├── ScrollViewStickyHeader.d.ts │ │ │ │ │ ├── ScrollViewViewConfig.d.ts │ │ │ │ │ └── processDecelerationRate.d.ts │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ ├── RCTSegmentedControlNativeComponent.d.ts │ │ │ │ │ └── SegmentedControlIOS.d.ts │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider.d.ts │ │ │ │ │ └── SliderNativeComponent.d.ts │ │ │ │ ├── Sound │ │ │ │ │ ├── NativeSoundManager.d.ts │ │ │ │ │ └── SoundManager.d.ts │ │ │ │ ├── StaticRenderer.d.ts │ │ │ │ ├── StatusBar │ │ │ │ │ ├── NativeStatusBarManagerAndroid.d.ts │ │ │ │ │ ├── NativeStatusBarManagerIOS.d.ts │ │ │ │ │ ├── StatusBar.d.ts │ │ │ │ │ └── StatusBarIOS.d.ts │ │ │ │ ├── Switch │ │ │ │ │ ├── AndroidSwitchNativeComponent.d.ts │ │ │ │ │ ├── Switch.d.ts │ │ │ │ │ └── SwitchNativeComponent.d.ts │ │ │ │ ├── TextInput │ │ │ │ │ ├── AndroidTextInputNativeComponent.d.ts │ │ │ │ │ ├── AndroidTextInputViewConfig.d.ts │ │ │ │ │ ├── InputAccessoryView.d.ts │ │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.d.ts │ │ │ │ │ ├── RCTMultilineTextInputNativeComponent.d.ts │ │ │ │ │ ├── RCTSingelineTextInputNativeComponent.d.ts │ │ │ │ │ ├── RCTSinglelineTextInputViewConfig.d.ts │ │ │ │ │ ├── TextInput.d.ts │ │ │ │ │ ├── TextInputNativeCommands.d.ts │ │ │ │ │ └── TextInputState.d.ts │ │ │ │ ├── ToastAndroid │ │ │ │ │ ├── NativeToastAndroid.d.ts │ │ │ │ │ └── ToastAndroid.d.ts │ │ │ │ ├── Touchable │ │ │ │ │ ├── PooledClass.d.ts │ │ │ │ │ ├── TVTouchable.d.ts │ │ │ │ │ ├── Touchable.d.ts │ │ │ │ │ ├── TouchableBounce.d.ts │ │ │ │ │ ├── TouchableHighlight.d.ts │ │ │ │ │ ├── TouchableNativeFeedback.d.ts │ │ │ │ │ ├── TouchableOpacity.d.ts │ │ │ │ │ ├── TouchableWithoutFeedback.d.ts │ │ │ │ │ └── ensurePositiveDelayProps.d.ts │ │ │ │ ├── UnimplementedViews │ │ │ │ │ ├── UnimplementedNativeViewNativeComponent.d.ts │ │ │ │ │ └── UnimplementedView.d.ts │ │ │ │ └── View │ │ │ │ │ ├── ReactNativeStyleAttributes.d.ts │ │ │ │ │ ├── ReactNativeViewAttributes.d.ts │ │ │ │ │ ├── ReactNativeViewViewConfig.d.ts │ │ │ │ │ ├── ReactNativeViewViewConfigAndroid.d.ts │ │ │ │ │ ├── View.d.ts │ │ │ │ │ ├── ViewAccessibility.d.ts │ │ │ │ │ ├── ViewNativeComponent.d.ts │ │ │ │ │ └── ViewPropTypes.d.ts │ │ │ ├── Core │ │ │ │ ├── Devtools │ │ │ │ │ ├── getDevServer.d.ts │ │ │ │ │ ├── openFileInEditor.d.ts │ │ │ │ │ ├── openURLInBrowser.d.ts │ │ │ │ │ ├── parseErrorStack.d.ts │ │ │ │ │ ├── parseHermesStack.d.ts │ │ │ │ │ └── symbolicateStackTrace.d.ts │ │ │ │ ├── ExceptionsManager.d.ts │ │ │ │ ├── InitializeCore.d.ts │ │ │ │ ├── NativeExceptionsManager.d.ts │ │ │ │ ├── ReactFiberErrorDialog.d.ts │ │ │ │ ├── ReactNativeVersion.d.ts │ │ │ │ ├── ReactNativeVersionCheck.d.ts │ │ │ │ ├── SegmentFetcher │ │ │ │ │ └── NativeSegmentFetcher.d.ts │ │ │ │ ├── Timers │ │ │ │ │ ├── JSTimers.d.ts │ │ │ │ │ └── NativeTiming.d.ts │ │ │ │ ├── checkNativeVersion.d.ts │ │ │ │ ├── polyfillPromise.d.ts │ │ │ │ ├── setUpAlert.d.ts │ │ │ │ ├── setUpBatchedBridge.d.ts │ │ │ │ ├── setUpDeveloperTools.d.ts │ │ │ │ ├── setUpErrorHandling.d.ts │ │ │ │ ├── setUpGlobals.d.ts │ │ │ │ ├── setUpNavigator.d.ts │ │ │ │ ├── setUpPerformance.d.ts │ │ │ │ ├── setUpReactDevTools.d.ts │ │ │ │ ├── setUpReactRefresh.d.ts │ │ │ │ ├── setUpRegeneratorRuntime.d.ts │ │ │ │ ├── setUpSegmentFetcher.d.ts │ │ │ │ ├── setUpSystrace.d.ts │ │ │ │ ├── setUpTimers.d.ts │ │ │ │ └── setUpXHR.d.ts │ │ │ ├── DeprecatedPropTypes │ │ │ │ ├── DeprecatedColorPropType.d.ts │ │ │ │ ├── DeprecatedEdgeInsetsPropType.d.ts │ │ │ │ ├── DeprecatedImagePropType.d.ts │ │ │ │ ├── DeprecatedImageSourcePropType.d.ts │ │ │ │ ├── DeprecatedImageStylePropTypes.d.ts │ │ │ │ ├── DeprecatedLayoutPropTypes.d.ts │ │ │ │ ├── DeprecatedPointPropType.d.ts │ │ │ │ ├── DeprecatedShadowPropTypesIOS.d.ts │ │ │ │ ├── DeprecatedStyleSheetPropType.d.ts │ │ │ │ ├── DeprecatedTVViewPropTypes.d.ts │ │ │ │ ├── DeprecatedTextInputPropTypes.d.ts │ │ │ │ ├── DeprecatedTextPropTypes.d.ts │ │ │ │ ├── DeprecatedTextStylePropTypes.d.ts │ │ │ │ ├── DeprecatedTransformPropTypes.d.ts │ │ │ │ ├── DeprecatedViewAccessibility.d.ts │ │ │ │ ├── DeprecatedViewPropTypes.d.ts │ │ │ │ ├── DeprecatedViewStylePropTypes.d.ts │ │ │ │ └── deprecatedCreateStrictShapeTypeChecker.d.ts │ │ │ ├── EventEmitter │ │ │ │ ├── NativeEventEmitter.d.ts │ │ │ │ ├── RCTDeviceEventEmitter.d.ts │ │ │ │ ├── RCTEventEmitter.d.ts │ │ │ │ └── RCTNativeAppEventEmitter.d.ts │ │ │ ├── HeapCapture │ │ │ │ ├── HeapCapture.d.ts │ │ │ │ └── NativeJSCHeapCapture.d.ts │ │ │ ├── Image │ │ │ │ ├── AssetRegistry.d.ts │ │ │ │ ├── AssetSourceResolver.d.ts │ │ │ │ ├── Image.d.ts │ │ │ │ ├── ImageAnalyticsTagContext.d.ts │ │ │ │ ├── ImageBackground.d.ts │ │ │ │ ├── ImagePickerIOS.d.ts │ │ │ │ ├── ImageProps.d.ts │ │ │ │ ├── ImageResizeMode.d.ts │ │ │ │ ├── ImageSource.d.ts │ │ │ │ ├── ImageViewNativeComponent.d.ts │ │ │ │ ├── ImageViewViewConfig.d.ts │ │ │ │ ├── NativeImageLoaderAndroid.d.ts │ │ │ │ ├── NativeImageLoaderIOS.d.ts │ │ │ │ ├── NativeImagePickerIOS.d.ts │ │ │ │ ├── RelativeImageStub.d.ts │ │ │ │ ├── TextInlineImageNativeComponent.d.ts │ │ │ │ ├── assetPathUtils.d.ts │ │ │ │ ├── nativeImageSource.d.ts │ │ │ │ └── resolveAssetSource.d.ts │ │ │ ├── Interaction │ │ │ │ ├── Batchinator.d.ts │ │ │ │ ├── BridgeSpyStallHandler.d.ts │ │ │ │ ├── FrameRateLogger.d.ts │ │ │ │ ├── InteractionManager.d.ts │ │ │ │ ├── InteractionMixin.d.ts │ │ │ │ ├── InteractionStallDebugger.d.ts │ │ │ │ ├── JSEventLoopWatchdog.d.ts │ │ │ │ ├── NativeFrameRateLogger.d.ts │ │ │ │ ├── PanResponder.d.ts │ │ │ │ └── TaskQueue.d.ts │ │ │ ├── LayoutAnimation │ │ │ │ └── LayoutAnimation.d.ts │ │ │ ├── Linking │ │ │ │ ├── Linking.d.ts │ │ │ │ └── NativeLinking.d.ts │ │ │ ├── Lists │ │ │ │ ├── FillRateHelper.d.ts │ │ │ │ ├── FlatList.d.ts │ │ │ │ ├── SectionList.d.ts │ │ │ │ ├── ViewabilityHelper.d.ts │ │ │ │ ├── VirtualizeUtils.d.ts │ │ │ │ ├── VirtualizedList.d.ts │ │ │ │ └── VirtualizedSectionList.d.ts │ │ │ ├── LogBox │ │ │ │ ├── Data │ │ │ │ │ ├── LogBoxData.d.ts │ │ │ │ │ ├── LogBoxLog.d.ts │ │ │ │ │ ├── LogBoxSymbolication.d.ts │ │ │ │ │ └── parseLogBoxLog.d.ts │ │ │ │ ├── LogBox.d.ts │ │ │ │ ├── LogBoxInspectorContainer.d.ts │ │ │ │ ├── LogBoxNotificationContainer.d.ts │ │ │ │ └── UI │ │ │ │ │ ├── AnsiHighlight.d.ts │ │ │ │ │ ├── LogBoxButton.d.ts │ │ │ │ │ ├── LogBoxInspector.d.ts │ │ │ │ │ ├── LogBoxInspectorCodeFrame.d.ts │ │ │ │ │ ├── LogBoxInspectorFooter.d.ts │ │ │ │ │ ├── LogBoxInspectorHeader.d.ts │ │ │ │ │ ├── LogBoxInspectorMessageHeader.d.ts │ │ │ │ │ ├── LogBoxInspectorReactFrames.d.ts │ │ │ │ │ ├── LogBoxInspectorSection.d.ts │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus.d.ts │ │ │ │ │ ├── LogBoxInspectorStackFrame.d.ts │ │ │ │ │ ├── LogBoxInspectorStackFrames.d.ts │ │ │ │ │ ├── LogBoxMessage.d.ts │ │ │ │ │ ├── LogBoxNotification.d.ts │ │ │ │ │ └── LogBoxStyle.d.ts │ │ │ ├── Modal │ │ │ │ ├── Modal.d.ts │ │ │ │ ├── NativeModalManager.d.ts │ │ │ │ └── RCTModalHostViewNativeComponent.d.ts │ │ │ ├── NativeModules │ │ │ │ └── specs │ │ │ │ │ ├── NativeAnimationsDebugModule.d.ts │ │ │ │ │ ├── NativeDevMenu.d.ts │ │ │ │ │ ├── NativeDevSettings.d.ts │ │ │ │ │ ├── NativeDeviceEventManager.d.ts │ │ │ │ │ ├── NativeDialogManagerAndroid.d.ts │ │ │ │ │ ├── NativeLogBox.d.ts │ │ │ │ │ ├── NativeRedBox.d.ts │ │ │ │ │ └── NativeSourceCode.d.ts │ │ │ ├── Network │ │ │ │ ├── FormData.d.ts │ │ │ │ ├── NativeNetworkingAndroid.d.ts │ │ │ │ ├── NativeNetworkingIOS.d.ts │ │ │ │ ├── RCTNetworking.d.ts │ │ │ │ ├── XMLHttpRequest.d.ts │ │ │ │ └── convertRequestBody.d.ts │ │ │ ├── Performance │ │ │ │ ├── NativeJSCSamplingProfiler.d.ts │ │ │ │ ├── PureComponentDebug.d.ts │ │ │ │ ├── QuickPerformanceLogger.d.ts │ │ │ │ ├── SamplingProfiler.d.ts │ │ │ │ └── Systrace.d.ts │ │ │ ├── PermissionsAndroid │ │ │ │ ├── NativePermissionsAndroid.d.ts │ │ │ │ └── PermissionsAndroid.d.ts │ │ │ ├── Pressability │ │ │ │ ├── HoverState.d.ts │ │ │ │ ├── Pressability.d.ts │ │ │ │ ├── PressabilityDebug.d.ts │ │ │ │ └── usePressability.d.ts │ │ │ ├── PushNotificationIOS │ │ │ │ ├── NativePushNotificationManagerIOS.d.ts │ │ │ │ └── PushNotificationIOS.d.ts │ │ │ ├── ReactNative │ │ │ │ ├── AppContainer.d.ts │ │ │ │ ├── AppRegistry.d.ts │ │ │ │ ├── DummyUIManager.d.ts │ │ │ │ ├── FabricUIManager.d.ts │ │ │ │ ├── HeadlessJsTaskError.d.ts │ │ │ │ ├── I18nManager.d.ts │ │ │ │ ├── NativeHeadlessJsTaskSupport.d.ts │ │ │ │ ├── NativeI18nManager.d.ts │ │ │ │ ├── NativeUIManager.d.ts │ │ │ │ ├── PaperUIManager.d.ts │ │ │ │ ├── ReactFabricInternals.d.ts │ │ │ │ ├── RootTagContext.d.ts │ │ │ │ ├── UIManager.d.ts │ │ │ │ ├── UIManagerProperties.d.ts │ │ │ │ ├── getNativeComponentAttributes.d.ts │ │ │ │ ├── queryLayoutByID.d.ts │ │ │ │ ├── renderApplication.d.ts │ │ │ │ └── requireNativeComponent.d.ts │ │ │ ├── Renderer │ │ │ │ └── shims │ │ │ │ │ ├── ReactFabric.d.ts │ │ │ │ │ ├── ReactFeatureFlags.d.ts │ │ │ │ │ ├── ReactNative.d.ts │ │ │ │ │ ├── ReactNativeTypes.d.ts │ │ │ │ │ ├── ReactNativeViewConfigRegistry.d.ts │ │ │ │ │ └── createReactNativeComponentClass.d.ts │ │ │ ├── Settings │ │ │ │ ├── NativeSettingsManager.d.ts │ │ │ │ └── Settings.d.ts │ │ │ ├── Share │ │ │ │ ├── NativeShareModule.d.ts │ │ │ │ └── Share.d.ts │ │ │ ├── Storage │ │ │ │ ├── AsyncStorage.d.ts │ │ │ │ └── NativeAsyncStorage.d.ts │ │ │ ├── StyleSheet │ │ │ │ ├── EdgeInsetsPropType.d.ts │ │ │ │ ├── PlatformColorValueTypes.d.ts │ │ │ │ ├── PlatformColorValueTypesAndroid.d.ts │ │ │ │ ├── PlatformColorValueTypesIOS.d.ts │ │ │ │ ├── PointPropType.d.ts │ │ │ │ ├── Rect.d.ts │ │ │ │ ├── StyleSheet.d.ts │ │ │ │ ├── StyleSheetTypes.d.ts │ │ │ │ ├── StyleSheetValidation.d.ts │ │ │ │ ├── flattenStyle.d.ts │ │ │ │ ├── normalizeColor.d.ts │ │ │ │ ├── processColor.d.ts │ │ │ │ ├── processColorArray.d.ts │ │ │ │ ├── processTransform.d.ts │ │ │ │ ├── setNormalizedColorAlpha.d.ts │ │ │ │ └── splitLayoutProps.d.ts │ │ │ ├── Text │ │ │ │ ├── Text.d.ts │ │ │ │ ├── TextAncestor.d.ts │ │ │ │ └── TextProps.d.ts │ │ │ ├── TurboModule │ │ │ │ ├── RCTExport.d.ts │ │ │ │ ├── TurboModuleRegistry.d.ts │ │ │ │ └── samples │ │ │ │ │ └── NativeSampleTurboModule.d.ts │ │ │ ├── Types │ │ │ │ ├── CodegenTypes.d.ts │ │ │ │ └── CoreEventTypes.d.ts │ │ │ ├── UTFSequence.d.ts │ │ │ ├── Utilities │ │ │ │ ├── Appearance.d.ts │ │ │ │ ├── BackHandler.d.ts │ │ │ │ ├── DebugEnvironment.d.ts │ │ │ │ ├── DevSettings.d.ts │ │ │ │ ├── DeviceInfo.d.ts │ │ │ │ ├── Dimensions.d.ts │ │ │ │ ├── GlobalPerformanceLogger.d.ts │ │ │ │ ├── HMRClient.d.ts │ │ │ │ ├── HMRClientProdShim.d.ts │ │ │ │ ├── JSDevSupportModule.d.ts │ │ │ │ ├── LoadingView.d.ts │ │ │ │ ├── NativeAppearance.d.ts │ │ │ │ ├── NativeDevLoadingView.d.ts │ │ │ │ ├── NativeDeviceInfo.d.ts │ │ │ │ ├── NativeJSDevSupport.d.ts │ │ │ │ ├── NativePlatformConstantsAndroid.d.ts │ │ │ │ ├── NativePlatformConstantsIOS.d.ts │ │ │ │ ├── PerformanceLoggerContext.d.ts │ │ │ │ ├── PixelRatio.d.ts │ │ │ │ ├── Platform.d.ts │ │ │ │ ├── PolyfillFunctions.d.ts │ │ │ │ ├── RCTLog.d.ts │ │ │ │ ├── ReactNativeTestTools.d.ts │ │ │ │ ├── SceneTracker.d.ts │ │ │ │ ├── binaryToBase64.d.ts │ │ │ │ ├── clamp.d.ts │ │ │ │ ├── codegenNativeCommands.d.ts │ │ │ │ ├── codegenNativeComponent.d.ts │ │ │ │ ├── createPerformanceLogger.d.ts │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev.d.ts │ │ │ │ ├── defineLazyObjectProperty.d.ts │ │ │ │ ├── deprecatedPropType.d.ts │ │ │ │ ├── differ │ │ │ │ │ ├── deepDiffer.d.ts │ │ │ │ │ ├── insetsDiffer.d.ts │ │ │ │ │ ├── pointsDiffer.d.ts │ │ │ │ │ └── sizesDiffer.d.ts │ │ │ │ ├── dismissKeyboard.d.ts │ │ │ │ ├── groupByEveryN.d.ts │ │ │ │ ├── infoLog.d.ts │ │ │ │ ├── logError.d.ts │ │ │ │ ├── mapWithSeparator.d.ts │ │ │ │ ├── mergeIntoFast.d.ts │ │ │ │ ├── registerGeneratedViewConfig.d.ts │ │ │ │ ├── setAndForwardRef.d.ts │ │ │ │ ├── stringifySafe.d.ts │ │ │ │ ├── truncate.d.ts │ │ │ │ ├── useColorScheme.d.ts │ │ │ │ ├── useWindowDimensions.d.ts │ │ │ │ ├── verifyComponentAttributeEquivalence.d.ts │ │ │ │ └── warnOnce.d.ts │ │ │ ├── Vibration │ │ │ │ ├── NativeVibration.d.ts │ │ │ │ └── Vibration.d.ts │ │ │ ├── WebSocket │ │ │ │ ├── NativeWebSocketModule.d.ts │ │ │ │ └── WebSocket.d.ts │ │ │ ├── YellowBox │ │ │ │ └── YellowBoxDeprecated.d.ts │ │ │ └── vendor │ │ │ │ └── emitter │ │ │ │ ├── EmitterSubscription.d.ts │ │ │ │ ├── EventEmitter.d.ts │ │ │ │ ├── EventSubscription.d.ts │ │ │ │ └── EventSubscriptionVendor.d.ts │ │ │ ├── index.d.ts │ │ │ └── tsconfig.json │ ├── overrides.android.ts │ ├── overrides.ios.ts │ └── overrides.ts │ └── v0.64.1 │ ├── android │ ├── hint │ │ ├── Libraries │ │ │ ├── ActionSheetIOS │ │ │ │ ├── ActionSheetIOS.hint.json │ │ │ │ └── NativeActionSheetManager.hint.json │ │ │ ├── Alert │ │ │ │ ├── Alert.hint.json │ │ │ │ └── NativeAlertManager.hint.json │ │ │ ├── Animated │ │ │ │ ├── Animated.hint.json │ │ │ │ ├── AnimatedEvent.hint.json │ │ │ │ ├── AnimatedImplementation.hint.json │ │ │ │ ├── AnimatedMock.hint.json │ │ │ │ ├── Easing.hint.json │ │ │ │ ├── NativeAnimatedHelper.hint.json │ │ │ │ ├── NativeAnimatedModule.hint.json │ │ │ │ ├── NativeAnimatedTurboModule.hint.json │ │ │ │ ├── SpringConfig.hint.json │ │ │ │ ├── animations │ │ │ │ │ ├── Animation.hint.json │ │ │ │ │ ├── DecayAnimation.hint.json │ │ │ │ │ ├── SpringAnimation.hint.json │ │ │ │ │ └── TimingAnimation.hint.json │ │ │ │ ├── bezier.hint.json │ │ │ │ ├── components │ │ │ │ │ ├── AnimatedFlatList.hint.json │ │ │ │ │ ├── AnimatedImage.hint.json │ │ │ │ │ ├── AnimatedScrollView.hint.json │ │ │ │ │ ├── AnimatedSectionList.hint.json │ │ │ │ │ ├── AnimatedText.hint.json │ │ │ │ │ └── AnimatedView.hint.json │ │ │ │ ├── createAnimatedComponent.hint.json │ │ │ │ └── nodes │ │ │ │ │ ├── AnimatedAddition.hint.json │ │ │ │ │ ├── AnimatedDiffClamp.hint.json │ │ │ │ │ ├── AnimatedDivision.hint.json │ │ │ │ │ ├── AnimatedInterpolation.hint.json │ │ │ │ │ ├── AnimatedModulo.hint.json │ │ │ │ │ ├── AnimatedMultiplication.hint.json │ │ │ │ │ ├── AnimatedNode.hint.json │ │ │ │ │ ├── AnimatedProps.hint.json │ │ │ │ │ ├── AnimatedStyle.hint.json │ │ │ │ │ ├── AnimatedSubtraction.hint.json │ │ │ │ │ ├── AnimatedTracking.hint.json │ │ │ │ │ ├── AnimatedTransform.hint.json │ │ │ │ │ ├── AnimatedValue.hint.json │ │ │ │ │ ├── AnimatedValueXY.hint.json │ │ │ │ │ └── AnimatedWithChildren.hint.json │ │ │ ├── AppState │ │ │ │ ├── AppState.hint.json │ │ │ │ └── NativeAppState.hint.json │ │ │ ├── BatchedBridge │ │ │ │ ├── BatchedBridge.hint.json │ │ │ │ ├── MessageQueue.hint.json │ │ │ │ └── NativeModules.hint.json │ │ │ ├── Blob │ │ │ │ ├── Blob.hint.json │ │ │ │ ├── BlobManager.hint.json │ │ │ │ ├── BlobRegistry.hint.json │ │ │ │ ├── BlobTypes.hint.json │ │ │ │ ├── File.hint.json │ │ │ │ ├── FileReader.hint.json │ │ │ │ ├── NativeBlobModule.hint.json │ │ │ │ └── NativeFileReaderModule.hint.json │ │ │ ├── BugReporting │ │ │ │ ├── BugReporting.hint.json │ │ │ │ ├── NativeBugReporting.hint.json │ │ │ │ ├── dumpReactTree.hint.json │ │ │ │ └── getReactData.hint.json │ │ │ ├── Components │ │ │ │ ├── AccessibilityInfo │ │ │ │ │ ├── AccessibilityInfo.android.hint.json │ │ │ │ │ ├── NativeAccessibilityInfo.hint.json │ │ │ │ │ └── NativeAccessibilityManager.hint.json │ │ │ │ ├── ActivityIndicator │ │ │ │ │ ├── ActivityIndicator.hint.json │ │ │ │ │ └── ActivityIndicatorViewNativeComponent.hint.json │ │ │ │ ├── Button.hint.json │ │ │ │ ├── Clipboard │ │ │ │ │ ├── Clipboard.hint.json │ │ │ │ │ └── NativeClipboard.hint.json │ │ │ │ ├── DatePicker │ │ │ │ │ └── RCTDatePickerNativeComponent.hint.json │ │ │ │ ├── DatePickerAndroid │ │ │ │ │ ├── DatePickerAndroid.android.hint.json │ │ │ │ │ ├── DatePickerAndroidTypes.hint.json │ │ │ │ │ └── NativeDatePickerAndroid.hint.json │ │ │ │ ├── DrawerAndroid │ │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.hint.json │ │ │ │ │ └── DrawerLayoutAndroid.android.hint.json │ │ │ │ ├── Keyboard │ │ │ │ │ ├── Keyboard.hint.json │ │ │ │ │ ├── KeyboardAvoidingView.hint.json │ │ │ │ │ └── NativeKeyboardObserver.hint.json │ │ │ │ ├── MaskedView │ │ │ │ │ ├── MaskedViewIOS.android.hint.json │ │ │ │ │ └── RCTMaskedViewNativeComponent.hint.json │ │ │ │ ├── Picker │ │ │ │ │ ├── AndroidDialogPickerNativeComponent.hint.json │ │ │ │ │ ├── AndroidDialogPickerViewConfig.hint.json │ │ │ │ │ ├── AndroidDropdownPickerNativeComponent.hint.json │ │ │ │ │ ├── Picker.hint.json │ │ │ │ │ ├── PickerAndroid.android.hint.json │ │ │ │ │ ├── RCTPickerNativeComponent.hint.json │ │ │ │ │ └── RCTPickerViewConfig.hint.json │ │ │ │ ├── Pressable │ │ │ │ │ ├── Pressable.hint.json │ │ │ │ │ └── useAndroidRippleForView.hint.json │ │ │ │ ├── ProgressBarAndroid │ │ │ │ │ ├── ProgressBarAndroid.android.hint.json │ │ │ │ │ └── ProgressBarAndroidNativeComponent.hint.json │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ └── RCTProgressViewNativeComponent.hint.json │ │ │ │ ├── RefreshControl │ │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.hint.json │ │ │ │ │ ├── PullToRefreshViewNativeComponent.hint.json │ │ │ │ │ └── RefreshControl.hint.json │ │ │ │ ├── SafeAreaView │ │ │ │ │ ├── RCTSafeAreaViewNativeComponent.hint.json │ │ │ │ │ └── SafeAreaView.hint.json │ │ │ │ ├── ScrollResponder.hint.json │ │ │ │ ├── ScrollView │ │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.hint.json │ │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollContentViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollView.hint.json │ │ │ │ │ ├── ScrollViewCommands.hint.json │ │ │ │ │ ├── ScrollViewContext.hint.json │ │ │ │ │ ├── ScrollViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollViewNativeComponentType.hint.json │ │ │ │ │ ├── ScrollViewStickyHeader.hint.json │ │ │ │ │ ├── ScrollViewViewConfig.hint.json │ │ │ │ │ └── processDecelerationRate.hint.json │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ └── RCTSegmentedControlNativeComponent.hint.json │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider.hint.json │ │ │ │ │ └── SliderNativeComponent.hint.json │ │ │ │ ├── Sound │ │ │ │ │ ├── NativeSoundManager.hint.json │ │ │ │ │ └── SoundManager.hint.json │ │ │ │ ├── StaticContainer.react.hint.json │ │ │ │ ├── StaticRenderer.hint.json │ │ │ │ ├── StatusBar │ │ │ │ │ ├── NativeStatusBarManagerAndroid.hint.json │ │ │ │ │ ├── NativeStatusBarManagerIOS.hint.json │ │ │ │ │ ├── StatusBar.hint.json │ │ │ │ │ └── StatusBarIOS.hint.json │ │ │ │ ├── Switch │ │ │ │ │ ├── AndroidSwitchNativeComponent.hint.json │ │ │ │ │ ├── Switch.hint.json │ │ │ │ │ └── SwitchNativeComponent.hint.json │ │ │ │ ├── TextInput │ │ │ │ │ ├── AndroidTextInputNativeComponent.hint.json │ │ │ │ │ ├── AndroidTextInputViewConfig.hint.json │ │ │ │ │ ├── InputAccessoryView.hint.json │ │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.hint.json │ │ │ │ │ ├── RCTMultilineTextInputNativeComponent.hint.json │ │ │ │ │ ├── RCTSingelineTextInputNativeComponent.hint.json │ │ │ │ │ ├── RCTSinglelineTextInputViewConfig.hint.json │ │ │ │ │ ├── TextInput.hint.json │ │ │ │ │ ├── TextInputNativeCommands.hint.json │ │ │ │ │ └── TextInputState.hint.json │ │ │ │ ├── ToastAndroid │ │ │ │ │ ├── NativeToastAndroid.hint.json │ │ │ │ │ └── ToastAndroid.android.hint.json │ │ │ │ ├── Touchable │ │ │ │ │ ├── PooledClass.hint.json │ │ │ │ │ ├── Touchable.hint.json │ │ │ │ │ ├── TouchableBounce.hint.json │ │ │ │ │ ├── TouchableHighlight.hint.json │ │ │ │ │ ├── TouchableNativeFeedback.hint.json │ │ │ │ │ ├── TouchableOpacity.hint.json │ │ │ │ │ ├── TouchableWithoutFeedback.hint.json │ │ │ │ │ └── ensurePositiveDelayProps.hint.json │ │ │ │ ├── UnimplementedViews │ │ │ │ │ ├── UnimplementedNativeViewNativeComponent.hint.json │ │ │ │ │ └── UnimplementedView.hint.json │ │ │ │ └── View │ │ │ │ │ ├── ReactNativeStyleAttributes.hint.json │ │ │ │ │ ├── ReactNativeViewAttributes.hint.json │ │ │ │ │ ├── ReactNativeViewViewConfig.hint.json │ │ │ │ │ ├── ReactNativeViewViewConfigAndroid.hint.json │ │ │ │ │ ├── View.hint.json │ │ │ │ │ ├── ViewAccessibility.hint.json │ │ │ │ │ ├── ViewNativeComponent.hint.json │ │ │ │ │ └── ViewPropTypes.hint.json │ │ │ ├── Core │ │ │ │ ├── Devtools │ │ │ │ │ ├── getDevServer.hint.json │ │ │ │ │ ├── openFileInEditor.hint.json │ │ │ │ │ ├── openURLInBrowser.hint.json │ │ │ │ │ ├── parseErrorStack.hint.json │ │ │ │ │ ├── parseHermesStack.hint.json │ │ │ │ │ └── symbolicateStackTrace.hint.json │ │ │ │ ├── ExceptionsManager.hint.json │ │ │ │ ├── InitializeCore.hint.json │ │ │ │ ├── NativeExceptionsManager.hint.json │ │ │ │ ├── ReactFiberErrorDialog.hint.json │ │ │ │ ├── ReactNativeVersion.hint.json │ │ │ │ ├── ReactNativeVersionCheck.hint.json │ │ │ │ ├── SegmentFetcher │ │ │ │ │ └── NativeSegmentFetcher.hint.json │ │ │ │ ├── Timers │ │ │ │ │ ├── JSTimers.hint.json │ │ │ │ │ └── NativeTiming.hint.json │ │ │ │ ├── checkNativeVersion.hint.json │ │ │ │ ├── polyfillPromise.hint.json │ │ │ │ ├── setUpAlert.hint.json │ │ │ │ ├── setUpBatchedBridge.hint.json │ │ │ │ ├── setUpDeveloperTools.hint.json │ │ │ │ ├── setUpErrorHandling.hint.json │ │ │ │ ├── setUpGlobals.hint.json │ │ │ │ ├── setUpNavigator.hint.json │ │ │ │ ├── setUpPerformance.hint.json │ │ │ │ ├── setUpReactDevTools.hint.json │ │ │ │ ├── setUpReactRefresh.hint.json │ │ │ │ ├── setUpRegeneratorRuntime.hint.json │ │ │ │ ├── setUpSegmentFetcher.hint.json │ │ │ │ ├── setUpSystrace.hint.json │ │ │ │ ├── setUpTimers.hint.json │ │ │ │ └── setUpXHR.hint.json │ │ │ ├── DeprecatedPropTypes │ │ │ │ ├── DeprecatedEdgeInsetsPropType.hint.json │ │ │ │ ├── DeprecatedImagePropType.hint.json │ │ │ │ ├── DeprecatedImageStylePropTypes.hint.json │ │ │ │ ├── DeprecatedLayoutPropTypes.hint.json │ │ │ │ ├── DeprecatedPointPropType.hint.json │ │ │ │ ├── DeprecatedShadowPropTypesIOS.hint.json │ │ │ │ ├── DeprecatedStyleSheetPropType.hint.json │ │ │ │ ├── DeprecatedTextInputPropTypes.hint.json │ │ │ │ ├── DeprecatedTextPropTypes.hint.json │ │ │ │ ├── DeprecatedTextStylePropTypes.hint.json │ │ │ │ ├── DeprecatedTransformPropTypes.hint.json │ │ │ │ ├── DeprecatedViewAccessibility.hint.json │ │ │ │ ├── DeprecatedViewPropTypes.hint.json │ │ │ │ ├── DeprecatedViewStylePropTypes.hint.json │ │ │ │ └── deprecatedCreateStrictShapeTypeChecker.hint.json │ │ │ ├── EventEmitter │ │ │ │ ├── NativeEventEmitter.hint.json │ │ │ │ ├── RCTDeviceEventEmitter.hint.json │ │ │ │ ├── RCTEventEmitter.hint.json │ │ │ │ └── RCTNativeAppEventEmitter.hint.json │ │ │ ├── HeapCapture │ │ │ │ ├── HeapCapture.hint.json │ │ │ │ └── NativeJSCHeapCapture.hint.json │ │ │ ├── Image │ │ │ │ ├── AssetRegistry.hint.json │ │ │ │ ├── AssetSourceResolver.hint.json │ │ │ │ ├── Image.android.hint.json │ │ │ │ ├── ImageAnalyticsTagContext.hint.json │ │ │ │ ├── ImageBackground.hint.json │ │ │ │ ├── ImagePickerIOS.hint.json │ │ │ │ ├── ImageProps.hint.json │ │ │ │ ├── ImageResizeMode.hint.json │ │ │ │ ├── ImageSource.hint.json │ │ │ │ ├── ImageViewNativeComponent.hint.json │ │ │ │ ├── ImageViewViewConfig.hint.json │ │ │ │ ├── NativeImageEditor.hint.json │ │ │ │ ├── NativeImageLoaderAndroid.hint.json │ │ │ │ ├── NativeImageLoaderIOS.hint.json │ │ │ │ ├── NativeImagePickerIOS.hint.json │ │ │ │ ├── NativeImageStoreAndroid.hint.json │ │ │ │ ├── NativeImageStoreIOS.hint.json │ │ │ │ ├── RelativeImageStub.hint.json │ │ │ │ ├── TextInlineImageNativeComponent.hint.json │ │ │ │ ├── nativeImageSource.hint.json │ │ │ │ └── resolveAssetSource.hint.json │ │ │ ├── Interaction │ │ │ │ ├── Batchinator.hint.json │ │ │ │ ├── BridgeSpyStallHandler.hint.json │ │ │ │ ├── FrameRateLogger.hint.json │ │ │ │ ├── InteractionManager.hint.json │ │ │ │ ├── InteractionMixin.hint.json │ │ │ │ ├── InteractionStallDebugger.hint.json │ │ │ │ ├── JSEventLoopWatchdog.hint.json │ │ │ │ ├── NativeFrameRateLogger.hint.json │ │ │ │ ├── PanResponder.hint.json │ │ │ │ └── TaskQueue.hint.json │ │ │ ├── LayoutAnimation │ │ │ │ └── LayoutAnimation.hint.json │ │ │ ├── Linking │ │ │ │ ├── Linking.hint.json │ │ │ │ ├── NativeIntentAndroid.hint.json │ │ │ │ └── NativeLinkingManager.hint.json │ │ │ ├── Lists │ │ │ │ ├── FillRateHelper.hint.json │ │ │ │ ├── FlatList.hint.json │ │ │ │ ├── SectionList.hint.json │ │ │ │ ├── ViewabilityHelper.hint.json │ │ │ │ ├── VirtualizeUtils.hint.json │ │ │ │ ├── VirtualizedList.hint.json │ │ │ │ ├── VirtualizedListContext.hint.json │ │ │ │ └── VirtualizedSectionList.hint.json │ │ │ ├── LogBox │ │ │ │ ├── Data │ │ │ │ │ ├── LogBoxData.hint.json │ │ │ │ │ ├── LogBoxLog.hint.json │ │ │ │ │ ├── LogBoxSymbolication.hint.json │ │ │ │ │ └── parseLogBoxLog.hint.json │ │ │ │ ├── LogBox.hint.json │ │ │ │ ├── LogBoxInspectorContainer.hint.json │ │ │ │ ├── LogBoxNotificationContainer.hint.json │ │ │ │ └── UI │ │ │ │ │ ├── AnsiHighlight.hint.json │ │ │ │ │ ├── LogBoxButton.hint.json │ │ │ │ │ ├── LogBoxInspector.hint.json │ │ │ │ │ ├── LogBoxInspectorCodeFrame.hint.json │ │ │ │ │ ├── LogBoxInspectorFooter.hint.json │ │ │ │ │ ├── LogBoxInspectorHeader.hint.json │ │ │ │ │ ├── LogBoxInspectorMessageHeader.hint.json │ │ │ │ │ ├── LogBoxInspectorReactFrames.hint.json │ │ │ │ │ ├── LogBoxInspectorSection.hint.json │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus.hint.json │ │ │ │ │ ├── LogBoxInspectorStackFrame.hint.json │ │ │ │ │ ├── LogBoxInspectorStackFrames.hint.json │ │ │ │ │ ├── LogBoxMessage.hint.json │ │ │ │ │ ├── LogBoxNotification.hint.json │ │ │ │ │ └── LogBoxStyle.hint.json │ │ │ ├── Modal │ │ │ │ ├── Modal.hint.json │ │ │ │ ├── NativeModalManager.hint.json │ │ │ │ └── RCTModalHostViewNativeComponent.hint.json │ │ │ ├── NativeModules │ │ │ │ └── specs │ │ │ │ │ ├── NativeAnimationsDebugModule.hint.json │ │ │ │ │ ├── NativeDevMenu.hint.json │ │ │ │ │ ├── NativeDevSettings.hint.json │ │ │ │ │ ├── NativeDeviceEventManager.hint.json │ │ │ │ │ ├── NativeDialogManagerAndroid.hint.json │ │ │ │ │ ├── NativeLogBox.hint.json │ │ │ │ │ ├── NativeRedBox.hint.json │ │ │ │ │ └── NativeSourceCode.hint.json │ │ │ ├── Network │ │ │ │ ├── FormData.hint.json │ │ │ │ ├── NativeNetworkingAndroid.hint.json │ │ │ │ ├── NativeNetworkingIOS.hint.json │ │ │ │ ├── RCTNetworking.android.hint.json │ │ │ │ ├── XMLHttpRequest.hint.json │ │ │ │ ├── convertRequestBody.hint.json │ │ │ │ └── fetch.hint.json │ │ │ ├── Performance │ │ │ │ ├── NativeJSCSamplingProfiler.hint.json │ │ │ │ ├── PureComponentDebug.hint.json │ │ │ │ ├── QuickPerformanceLogger.hint.json │ │ │ │ ├── SamplingProfiler.hint.json │ │ │ │ └── Systrace.hint.json │ │ │ ├── PermissionsAndroid │ │ │ │ ├── NativePermissionsAndroid.hint.json │ │ │ │ └── PermissionsAndroid.hint.json │ │ │ ├── Pressability │ │ │ │ ├── HoverState.hint.json │ │ │ │ ├── Pressability.hint.json │ │ │ │ ├── PressabilityDebug.hint.json │ │ │ │ └── usePressability.hint.json │ │ │ ├── PushNotificationIOS │ │ │ │ ├── NativePushNotificationManagerIOS.hint.json │ │ │ │ └── PushNotificationIOS.hint.json │ │ │ ├── ReactNative │ │ │ │ ├── AppContainer.hint.json │ │ │ │ ├── AppRegistry.hint.json │ │ │ │ ├── DummyUIManager.hint.json │ │ │ │ ├── FabricUIManager.hint.json │ │ │ │ ├── HeadlessJsTaskError.hint.json │ │ │ │ ├── I18nManager.hint.json │ │ │ │ ├── NativeHeadlessJsTaskSupport.hint.json │ │ │ │ ├── NativeI18nManager.hint.json │ │ │ │ ├── NativeUIManager.hint.json │ │ │ │ ├── PaperUIManager.hint.json │ │ │ │ ├── ReactFabricInternals.hint.json │ │ │ │ ├── RootTag.hint.json │ │ │ │ ├── UIManager.hint.json │ │ │ │ ├── UIManagerProperties.hint.json │ │ │ │ ├── getNativeComponentAttributes.hint.json │ │ │ │ ├── queryLayoutByID.hint.json │ │ │ │ ├── renderApplication.hint.json │ │ │ │ └── requireNativeComponent.hint.json │ │ │ ├── Reliability │ │ │ │ └── UserFlow.hint.json │ │ │ ├── Renderer │ │ │ │ └── shims │ │ │ │ │ ├── ReactFabric.hint.json │ │ │ │ │ ├── ReactFeatureFlags.hint.json │ │ │ │ │ ├── ReactNative.hint.json │ │ │ │ │ ├── ReactNativeTypes.hint.json │ │ │ │ │ ├── ReactNativeViewConfigRegistry.hint.json │ │ │ │ │ └── createReactNativeComponentClass.hint.json │ │ │ ├── Settings │ │ │ │ ├── NativeSettingsManager.hint.json │ │ │ │ └── Settings.android.hint.json │ │ │ ├── Share │ │ │ │ ├── NativeShareModule.hint.json │ │ │ │ └── Share.hint.json │ │ │ ├── Storage │ │ │ │ ├── AsyncStorage.hint.json │ │ │ │ ├── NativeAsyncLocalStorage.hint.json │ │ │ │ └── NativeAsyncSQLiteDBStorage.hint.json │ │ │ ├── StyleSheet │ │ │ │ ├── EdgeInsetsPropType.hint.json │ │ │ │ ├── PlatformColorValueTypes.android.hint.json │ │ │ │ ├── PlatformColorValueTypesIOS.hint.json │ │ │ │ ├── PointPropType.hint.json │ │ │ │ ├── Rect.hint.json │ │ │ │ ├── StyleSheet.hint.json │ │ │ │ ├── StyleSheetTypes.hint.json │ │ │ │ ├── StyleSheetValidation.hint.json │ │ │ │ ├── flattenStyle.hint.json │ │ │ │ ├── normalizeColor.hint.json │ │ │ │ ├── processColor.hint.json │ │ │ │ ├── processColorArray.hint.json │ │ │ │ ├── processTransform.hint.json │ │ │ │ ├── setNormalizedColorAlpha.hint.json │ │ │ │ └── splitLayoutProps.hint.json │ │ │ ├── Text │ │ │ │ ├── Text.hint.json │ │ │ │ ├── TextAncestor.hint.json │ │ │ │ ├── TextInjection.hint.json │ │ │ │ ├── TextNativeComponent.hint.json │ │ │ │ └── TextProps.hint.json │ │ │ ├── TurboModule │ │ │ │ ├── RCTExport.hint.json │ │ │ │ ├── TurboModuleRegistry.hint.json │ │ │ │ └── samples │ │ │ │ │ └── NativeSampleTurboModule.hint.json │ │ │ ├── Types │ │ │ │ ├── CodegenTypes.hint.json │ │ │ │ └── CoreEventTypes.hint.json │ │ │ ├── UTFSequence.hint.json │ │ │ ├── Utilities │ │ │ │ ├── Appearance.hint.json │ │ │ │ ├── BackHandler.android.hint.json │ │ │ │ ├── DebugEnvironment.hint.json │ │ │ │ ├── DevSettings.hint.json │ │ │ │ ├── DeviceInfo.hint.json │ │ │ │ ├── Dimensions.hint.json │ │ │ │ ├── GlobalPerformanceLogger.hint.json │ │ │ │ ├── HMRClient.hint.json │ │ │ │ ├── HMRClientProdShim.hint.json │ │ │ │ ├── JSDevSupportModule.hint.json │ │ │ │ ├── LoadingView.android.hint.json │ │ │ │ ├── NativeAppearance.hint.json │ │ │ │ ├── NativeDevLoadingView.hint.json │ │ │ │ ├── NativeDevSplitBundleLoader.hint.json │ │ │ │ ├── NativeDeviceInfo.hint.json │ │ │ │ ├── NativeJSDevSupport.hint.json │ │ │ │ ├── NativePlatformConstantsAndroid.hint.json │ │ │ │ ├── NativePlatformConstantsIOS.hint.json │ │ │ │ ├── PerformanceLoggerContext.hint.json │ │ │ │ ├── PixelRatio.hint.json │ │ │ │ ├── Platform.android.hint.json │ │ │ │ ├── PolyfillFunctions.hint.json │ │ │ │ ├── RCTLog.hint.json │ │ │ │ ├── ReactNativeTestTools.hint.json │ │ │ │ ├── SceneTracker.hint.json │ │ │ │ ├── binaryToBase64.hint.json │ │ │ │ ├── clamp.hint.json │ │ │ │ ├── codegenNativeCommands.hint.json │ │ │ │ ├── codegenNativeComponent.hint.json │ │ │ │ ├── createPerformanceLogger.hint.json │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev.hint.json │ │ │ │ ├── defineLazyObjectProperty.hint.json │ │ │ │ ├── deprecatedPropType.hint.json │ │ │ │ ├── differ │ │ │ │ │ ├── deepDiffer.hint.json │ │ │ │ │ ├── insetsDiffer.hint.json │ │ │ │ │ └── pointsDiffer.hint.json │ │ │ │ ├── dismissKeyboard.hint.json │ │ │ │ ├── groupByEveryN.hint.json │ │ │ │ ├── infoLog.hint.json │ │ │ │ ├── logError.hint.json │ │ │ │ ├── mapWithSeparator.hint.json │ │ │ │ ├── mergeIntoFast.hint.json │ │ │ │ ├── registerGeneratedViewConfig.hint.json │ │ │ │ ├── setAndForwardRef.hint.json │ │ │ │ ├── stringifySafe.hint.json │ │ │ │ ├── truncate.hint.json │ │ │ │ ├── useColorScheme.hint.json │ │ │ │ ├── useWindowDimensions.hint.json │ │ │ │ ├── verifyComponentAttributeEquivalence.hint.json │ │ │ │ └── warnOnce.hint.json │ │ │ ├── Vibration │ │ │ │ ├── NativeVibration.hint.json │ │ │ │ └── Vibration.hint.json │ │ │ ├── WebSocket │ │ │ │ ├── NativeWebSocketModule.hint.json │ │ │ │ └── WebSocket.hint.json │ │ │ ├── YellowBox │ │ │ │ └── YellowBoxDeprecated.hint.json │ │ │ └── vendor │ │ │ │ └── emitter │ │ │ │ ├── EventEmitter.hint.json │ │ │ │ ├── _EmitterSubscription.hint.json │ │ │ │ ├── _EventEmitter.hint.json │ │ │ │ ├── _EventSubscription.hint.json │ │ │ │ └── _EventSubscriptionVendor.hint.json │ │ ├── __flow__ │ │ │ ├── bom.hint.json │ │ │ ├── core.hint.json │ │ │ └── react.hint.json │ │ ├── hint.json │ │ └── index.hint.json │ ├── inputs │ │ ├── IntegrationTests │ │ │ ├── AccessibilityManagerTest.js.flow │ │ │ ├── AppEventsTest.js.flow │ │ │ ├── AsyncStorageTest.js.flow │ │ │ ├── GlobalEvalWithSourceUrlTest.js.flow │ │ │ ├── ImageCachePolicyTest.js.flow │ │ │ ├── ImageSnapshotTest.js.flow │ │ │ ├── IntegrationTestHarnessTest.js.flow │ │ │ ├── IntegrationTestsApp.js.flow │ │ │ ├── LayoutEventsTest.js.flow │ │ │ ├── PromiseTest.js.flow │ │ │ ├── ReactContentSizeUpdateTest.js.flow │ │ │ ├── SimpleSnapshotTest.js.flow │ │ │ ├── SizeFlexibilityUpdateTest.js.flow │ │ │ ├── SyncMethodTest.js.flow │ │ │ ├── TimersTest.js.flow │ │ │ ├── WebSocketTest.js.flow │ │ │ └── websocket_integration_test_server.js.flow │ │ ├── Libraries │ │ │ ├── ActionSheetIOS │ │ │ │ ├── ActionSheetIOS.js.flow │ │ │ │ └── NativeActionSheetManager.js.flow │ │ │ ├── Alert │ │ │ │ ├── Alert.js.flow │ │ │ │ └── NativeAlertManager.js.flow │ │ │ ├── Animated │ │ │ │ ├── Animated.js.flow │ │ │ │ ├── AnimatedEvent.js.flow │ │ │ │ ├── AnimatedImplementation.js.flow │ │ │ │ ├── AnimatedMock.js.flow │ │ │ │ ├── AnimatedWeb.js.flow │ │ │ │ ├── Easing.js.flow │ │ │ │ ├── NativeAnimatedHelper.js.flow │ │ │ │ ├── NativeAnimatedModule.js.flow │ │ │ │ ├── NativeAnimatedTurboModule.js.flow │ │ │ │ ├── SpringConfig.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── bezier-test.js.flow │ │ │ │ ├── animations │ │ │ │ │ ├── Animation.js.flow │ │ │ │ │ ├── DecayAnimation.js.flow │ │ │ │ │ ├── SpringAnimation.js.flow │ │ │ │ │ └── TimingAnimation.js.flow │ │ │ │ ├── bezier.js.flow │ │ │ │ ├── components │ │ │ │ │ ├── AnimatedFlatList.js.flow │ │ │ │ │ ├── AnimatedImage.js.flow │ │ │ │ │ ├── AnimatedScrollView.js.flow │ │ │ │ │ ├── AnimatedSectionList.js.flow │ │ │ │ │ ├── AnimatedText.js.flow │ │ │ │ │ └── AnimatedView.js.flow │ │ │ │ ├── createAnimatedComponent.js.flow │ │ │ │ └── nodes │ │ │ │ │ ├── AnimatedAddition.js.flow │ │ │ │ │ ├── AnimatedDiffClamp.js.flow │ │ │ │ │ ├── AnimatedDivision.js.flow │ │ │ │ │ ├── AnimatedInterpolation.js.flow │ │ │ │ │ ├── AnimatedModulo.js.flow │ │ │ │ │ ├── AnimatedMultiplication.js.flow │ │ │ │ │ ├── AnimatedNode.js.flow │ │ │ │ │ ├── AnimatedProps.js.flow │ │ │ │ │ ├── AnimatedStyle.js.flow │ │ │ │ │ ├── AnimatedSubtraction.js.flow │ │ │ │ │ ├── AnimatedTracking.js.flow │ │ │ │ │ ├── AnimatedTransform.js.flow │ │ │ │ │ ├── AnimatedValue.js.flow │ │ │ │ │ ├── AnimatedValueXY.js.flow │ │ │ │ │ └── AnimatedWithChildren.js.flow │ │ │ ├── AppState │ │ │ │ ├── AppState.js.flow │ │ │ │ └── NativeAppState.js.flow │ │ │ ├── BatchedBridge │ │ │ │ ├── BatchedBridge.js.flow │ │ │ │ ├── MessageQueue.js.flow │ │ │ │ ├── NativeModules.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ └── MessageQueueTestConfig.js.flow │ │ │ ├── Blob │ │ │ │ ├── Blob.js.flow │ │ │ │ ├── BlobManager.js.flow │ │ │ │ ├── BlobRegistry.js.flow │ │ │ │ ├── BlobTypes.js.flow │ │ │ │ ├── File.js.flow │ │ │ │ ├── FileReader.js.flow │ │ │ │ ├── NativeBlobModule.js.flow │ │ │ │ ├── NativeFileReaderModule.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ ├── BlobModule.js.flow │ │ │ │ │ └── FileReaderModule.js.flow │ │ │ ├── BugReporting │ │ │ │ ├── BugReporting.js.flow │ │ │ │ ├── NativeBugReporting.js.flow │ │ │ │ ├── dumpReactTree.js.flow │ │ │ │ └── getReactData.js.flow │ │ │ ├── Components │ │ │ │ ├── AccessibilityInfo │ │ │ │ │ ├── AccessibilityInfo.android.js.flow │ │ │ │ │ ├── NativeAccessibilityInfo.js.flow │ │ │ │ │ └── NativeAccessibilityManager.js.flow │ │ │ │ ├── ActivityIndicator │ │ │ │ │ ├── ActivityIndicator.js.flow │ │ │ │ │ ├── ActivityIndicatorViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ActivityIndicator-test.js.flow │ │ │ │ ├── Button.js.flow │ │ │ │ ├── Clipboard │ │ │ │ │ ├── Clipboard.js.flow │ │ │ │ │ └── NativeClipboard.js.flow │ │ │ │ ├── DatePicker │ │ │ │ │ ├── RCTDatePickerNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── DatePickerIOS-test.js.flow │ │ │ │ ├── DatePickerAndroid │ │ │ │ │ ├── DatePickerAndroid.android.js.flow │ │ │ │ │ ├── DatePickerAndroidTypes.js.flow │ │ │ │ │ └── NativeDatePickerAndroid.js.flow │ │ │ │ ├── DrawerAndroid │ │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.js.flow │ │ │ │ │ ├── DrawerLayoutAndroid.android.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── DrawerAndroid-test.js.flow │ │ │ │ ├── Keyboard │ │ │ │ │ ├── Keyboard.js.flow │ │ │ │ │ ├── KeyboardAvoidingView.js.flow │ │ │ │ │ ├── NativeKeyboardObserver.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Keyboard-test.js.flow │ │ │ │ ├── MaskedView │ │ │ │ │ ├── MaskedViewIOS.android.js.flow │ │ │ │ │ ├── RCTMaskedViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── MaskedViewIOS-test.js.flow │ │ │ │ ├── Picker │ │ │ │ │ ├── AndroidDialogPickerNativeComponent.js.flow │ │ │ │ │ ├── AndroidDialogPickerViewConfig.js.flow │ │ │ │ │ ├── AndroidDropdownPickerNativeComponent.js.flow │ │ │ │ │ ├── Picker.js.flow │ │ │ │ │ ├── PickerAndroid.android.js.flow │ │ │ │ │ ├── RCTPickerNativeComponent.js.flow │ │ │ │ │ ├── RCTPickerViewConfig.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Picker-test.js.flow │ │ │ │ ├── Pressable │ │ │ │ │ ├── Pressable.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Pressable-test.js.flow │ │ │ │ │ └── useAndroidRippleForView.js.flow │ │ │ │ ├── ProgressBarAndroid │ │ │ │ │ ├── ProgressBarAndroid.android.js.flow │ │ │ │ │ ├── ProgressBarAndroidNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ProgressBarAndroid-test.js.flow │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ ├── RCTProgressViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ProgressViewIOS-test.js.flow │ │ │ │ ├── RefreshControl │ │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.js.flow │ │ │ │ │ ├── PullToRefreshViewNativeComponent.js.flow │ │ │ │ │ ├── RefreshControl.js.flow │ │ │ │ │ └── __mocks__ │ │ │ │ │ │ └── RefreshControlMock.js.flow │ │ │ │ ├── SafeAreaView │ │ │ │ │ ├── RCTSafeAreaViewNativeComponent.js.flow │ │ │ │ │ ├── SafeAreaView.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── SafeAreaView-test.js.flow │ │ │ │ ├── ScrollResponder.js.flow │ │ │ │ ├── ScrollView │ │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.js.flow │ │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollContentViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollView.js.flow │ │ │ │ │ ├── ScrollViewCommands.js.flow │ │ │ │ │ ├── ScrollViewContext.js.flow │ │ │ │ │ ├── ScrollViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollViewNativeComponentType.js.flow │ │ │ │ │ ├── ScrollViewStickyHeader.js.flow │ │ │ │ │ ├── ScrollViewViewConfig.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── ScrollView-test.js.flow │ │ │ │ │ └── processDecelerationRate.js.flow │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ └── RCTSegmentedControlNativeComponent.js.flow │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider.js.flow │ │ │ │ │ └── SliderNativeComponent.js.flow │ │ │ │ ├── Sound │ │ │ │ │ ├── NativeSoundManager.js.flow │ │ │ │ │ └── SoundManager.js.flow │ │ │ │ ├── StaticContainer.react.js.flow │ │ │ │ ├── StaticRenderer.js.flow │ │ │ │ ├── StatusBar │ │ │ │ │ ├── NativeStatusBarManagerAndroid.js.flow │ │ │ │ │ ├── NativeStatusBarManagerIOS.js.flow │ │ │ │ │ ├── StatusBar.js.flow │ │ │ │ │ └── StatusBarIOS.js.flow │ │ │ │ ├── Switch │ │ │ │ │ ├── AndroidSwitchNativeComponent.js.flow │ │ │ │ │ ├── Switch.js.flow │ │ │ │ │ └── SwitchNativeComponent.js.flow │ │ │ │ ├── TextInput │ │ │ │ │ ├── AndroidTextInputNativeComponent.js.flow │ │ │ │ │ ├── AndroidTextInputViewConfig.js.flow │ │ │ │ │ ├── InputAccessoryView.js.flow │ │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.js.flow │ │ │ │ │ ├── RCTMultilineTextInputNativeComponent.js.flow │ │ │ │ │ ├── RCTSingelineTextInputNativeComponent.js.flow │ │ │ │ │ ├── RCTSinglelineTextInputViewConfig.js.flow │ │ │ │ │ ├── TextInput.js.flow │ │ │ │ │ ├── TextInputNativeCommands.js.flow │ │ │ │ │ ├── TextInputState.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── InputAccessoryView-test.js.flow │ │ │ │ │ │ └── TextInput-test.js.flow │ │ │ │ ├── ToastAndroid │ │ │ │ │ ├── NativeToastAndroid.js.flow │ │ │ │ │ └── ToastAndroid.android.js.flow │ │ │ │ ├── Touchable │ │ │ │ │ ├── PooledClass.js.flow │ │ │ │ │ ├── Touchable.js.flow │ │ │ │ │ ├── TouchableBounce.js.flow │ │ │ │ │ ├── TouchableHighlight.js.flow │ │ │ │ │ ├── TouchableNativeFeedback.js.flow │ │ │ │ │ ├── TouchableOpacity.js.flow │ │ │ │ │ ├── TouchableWithoutFeedback.js.flow │ │ │ │ │ └── ensurePositiveDelayProps.js.flow │ │ │ │ ├── UnimplementedViews │ │ │ │ │ ├── UnimplementedNativeViewNativeComponent.js.flow │ │ │ │ │ └── UnimplementedView.js.flow │ │ │ │ └── View │ │ │ │ │ ├── ReactNativeStyleAttributes.js.flow │ │ │ │ │ ├── ReactNativeViewAttributes.js.flow │ │ │ │ │ ├── ReactNativeViewViewConfig.js.flow │ │ │ │ │ ├── ReactNativeViewViewConfigAndroid.js.flow │ │ │ │ │ ├── View.js.flow │ │ │ │ │ ├── ViewAccessibility.js.flow │ │ │ │ │ ├── ViewNativeComponent.js.flow │ │ │ │ │ └── ViewPropTypes.js.flow │ │ │ ├── Core │ │ │ │ ├── Devtools │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── parseHermesStack-test.js.flow │ │ │ │ │ ├── getDevServer.js.flow │ │ │ │ │ ├── openFileInEditor.js.flow │ │ │ │ │ ├── openURLInBrowser.js.flow │ │ │ │ │ ├── parseErrorStack.js.flow │ │ │ │ │ ├── parseHermesStack.js.flow │ │ │ │ │ └── symbolicateStackTrace.js.flow │ │ │ │ ├── ExceptionsManager.js.flow │ │ │ │ ├── InitializeCore.js.flow │ │ │ │ ├── NativeExceptionsManager.js.flow │ │ │ │ ├── ReactFiberErrorDialog.js.flow │ │ │ │ ├── ReactNativeVersion.js.flow │ │ │ │ ├── ReactNativeVersionCheck.js.flow │ │ │ │ ├── SegmentFetcher │ │ │ │ │ └── NativeSegmentFetcher.js.flow │ │ │ │ ├── Timers │ │ │ │ │ ├── JSTimers.js.flow │ │ │ │ │ └── NativeTiming.js.flow │ │ │ │ ├── checkNativeVersion.js.flow │ │ │ │ ├── polyfillPromise.js.flow │ │ │ │ ├── setUpAlert.js.flow │ │ │ │ ├── setUpBatchedBridge.js.flow │ │ │ │ ├── setUpDeveloperTools.js.flow │ │ │ │ ├── setUpErrorHandling.js.flow │ │ │ │ ├── setUpGlobals.js.flow │ │ │ │ ├── setUpNavigator.js.flow │ │ │ │ ├── setUpPerformance.js.flow │ │ │ │ ├── setUpReactDevTools.js.flow │ │ │ │ ├── setUpReactRefresh.js.flow │ │ │ │ ├── setUpRegeneratorRuntime.js.flow │ │ │ │ ├── setUpSegmentFetcher.js.flow │ │ │ │ ├── setUpSystrace.js.flow │ │ │ │ ├── setUpTimers.js.flow │ │ │ │ └── setUpXHR.js.flow │ │ │ ├── DeprecatedPropTypes │ │ │ │ ├── DeprecatedEdgeInsetsPropType.js.flow │ │ │ │ ├── DeprecatedImagePropType.js.flow │ │ │ │ ├── DeprecatedImageStylePropTypes.js.flow │ │ │ │ ├── DeprecatedLayoutPropTypes.js.flow │ │ │ │ ├── DeprecatedPointPropType.js.flow │ │ │ │ ├── DeprecatedShadowPropTypesIOS.js.flow │ │ │ │ ├── DeprecatedStyleSheetPropType.js.flow │ │ │ │ ├── DeprecatedTextInputPropTypes.js.flow │ │ │ │ ├── DeprecatedTextPropTypes.js.flow │ │ │ │ ├── DeprecatedTextStylePropTypes.js.flow │ │ │ │ ├── DeprecatedTransformPropTypes.js.flow │ │ │ │ ├── DeprecatedViewAccessibility.js.flow │ │ │ │ ├── DeprecatedViewPropTypes.js.flow │ │ │ │ ├── DeprecatedViewStylePropTypes.js.flow │ │ │ │ └── deprecatedCreateStrictShapeTypeChecker.js.flow │ │ │ ├── EventEmitter │ │ │ │ ├── NativeEventEmitter.js.flow │ │ │ │ ├── RCTDeviceEventEmitter.js.flow │ │ │ │ ├── RCTEventEmitter.js.flow │ │ │ │ ├── RCTNativeAppEventEmitter.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ └── NativeEventEmitter.js.flow │ │ │ ├── HeapCapture │ │ │ │ ├── HeapCapture.js.flow │ │ │ │ └── NativeJSCHeapCapture.js.flow │ │ │ ├── Image │ │ │ │ ├── AssetRegistry.js.flow │ │ │ │ ├── AssetSourceResolver.js.flow │ │ │ │ ├── Image.android.js.flow │ │ │ │ ├── ImageAnalyticsTagContext.js.flow │ │ │ │ ├── ImageBackground.js.flow │ │ │ │ ├── ImagePickerIOS.js.flow │ │ │ │ ├── ImageProps.js.flow │ │ │ │ ├── ImageResizeMode.js.flow │ │ │ │ ├── ImageSource.js.flow │ │ │ │ ├── ImageViewNativeComponent.js.flow │ │ │ │ ├── ImageViewViewConfig.js.flow │ │ │ │ ├── NativeImageEditor.js.flow │ │ │ │ ├── NativeImageLoaderAndroid.js.flow │ │ │ │ ├── NativeImageLoaderIOS.js.flow │ │ │ │ ├── NativeImagePickerIOS.js.flow │ │ │ │ ├── NativeImageStoreAndroid.js.flow │ │ │ │ ├── NativeImageStoreIOS.js.flow │ │ │ │ ├── RelativeImageStub.js.flow │ │ │ │ ├── TextInlineImageNativeComponent.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── Image-test.js.flow │ │ │ │ ├── nativeImageSource.js.flow │ │ │ │ └── resolveAssetSource.js.flow │ │ │ ├── Inspector │ │ │ │ ├── BorderBox.js.flow │ │ │ │ ├── BoxInspector.js.flow │ │ │ │ ├── ElementBox.js.flow │ │ │ │ ├── ElementProperties.js.flow │ │ │ │ ├── Inspector.js.flow │ │ │ │ ├── InspectorOverlay.js.flow │ │ │ │ ├── InspectorPanel.js.flow │ │ │ │ ├── NetworkOverlay.js.flow │ │ │ │ ├── PerformanceOverlay.js.flow │ │ │ │ ├── StyleInspector.js.flow │ │ │ │ └── resolveBoxStyle.js.flow │ │ │ ├── Interaction │ │ │ │ ├── Batchinator.js.flow │ │ │ │ ├── BridgeSpyStallHandler.js.flow │ │ │ │ ├── FrameRateLogger.js.flow │ │ │ │ ├── InteractionManager.js.flow │ │ │ │ ├── InteractionMixin.js.flow │ │ │ │ ├── InteractionStallDebugger.js.flow │ │ │ │ ├── JSEventLoopWatchdog.js.flow │ │ │ │ ├── NativeFrameRateLogger.js.flow │ │ │ │ ├── PanResponder.js.flow │ │ │ │ └── TaskQueue.js.flow │ │ │ ├── JSInspector │ │ │ │ ├── InspectorAgent.js.flow │ │ │ │ ├── JSInspector.js.flow │ │ │ │ └── NetworkAgent.js.flow │ │ │ ├── LayoutAnimation │ │ │ │ └── LayoutAnimation.js.flow │ │ │ ├── Linking │ │ │ │ ├── Linking.js.flow │ │ │ │ ├── NativeIntentAndroid.js.flow │ │ │ │ └── NativeLinkingManager.js.flow │ │ │ ├── Lists │ │ │ │ ├── FillRateHelper.js.flow │ │ │ │ ├── FlatList.js.flow │ │ │ │ ├── SectionList.js.flow │ │ │ │ ├── ViewabilityHelper.js.flow │ │ │ │ ├── VirtualizeUtils.js.flow │ │ │ │ ├── VirtualizedList.js.flow │ │ │ │ ├── VirtualizedListContext.js.flow │ │ │ │ ├── VirtualizedSectionList.js.flow │ │ │ │ └── __flowtests__ │ │ │ │ │ ├── FlatList-flowtest.js.flow │ │ │ │ │ └── SectionList-flowtest.js.flow │ │ │ ├── LogBox │ │ │ │ ├── Data │ │ │ │ │ ├── LogBoxData.js.flow │ │ │ │ │ ├── LogBoxLog.js.flow │ │ │ │ │ ├── LogBoxSymbolication.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── LogBoxData-test.js.flow │ │ │ │ │ │ ├── LogBoxLog-test.js.flow │ │ │ │ │ │ ├── LogBoxSymbolication-test.js.flow │ │ │ │ │ │ └── parseLogBoxLog-test.js.flow │ │ │ │ │ └── parseLogBoxLog.js.flow │ │ │ │ ├── LogBox.js.flow │ │ │ │ ├── LogBoxInspectorContainer.js.flow │ │ │ │ ├── LogBoxNotificationContainer.js.flow │ │ │ │ ├── UI │ │ │ │ │ ├── AnsiHighlight.js.flow │ │ │ │ │ ├── LogBoxButton.js.flow │ │ │ │ │ ├── LogBoxInspector.js.flow │ │ │ │ │ ├── LogBoxInspectorCodeFrame.js.flow │ │ │ │ │ ├── LogBoxInspectorFooter.js.flow │ │ │ │ │ ├── LogBoxInspectorHeader.js.flow │ │ │ │ │ ├── LogBoxInspectorMessageHeader.js.flow │ │ │ │ │ ├── LogBoxInspectorReactFrames.js.flow │ │ │ │ │ ├── LogBoxInspectorSection.js.flow │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus.js.flow │ │ │ │ │ ├── LogBoxInspectorStackFrame.js.flow │ │ │ │ │ ├── LogBoxInspectorStackFrames.js.flow │ │ │ │ │ ├── LogBoxMessage.js.flow │ │ │ │ │ ├── LogBoxNotification.js.flow │ │ │ │ │ ├── LogBoxStyle.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── LogBoxButton-test.js.flow │ │ │ │ │ │ ├── LogBoxInspector-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorCodeFrame-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorFooter-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorHeader-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorMesageHeader-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorReactFrames-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorSection-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorStackFrame-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorStackFrames-test.js.flow │ │ │ │ │ │ ├── LogBoxMessage-test.js.flow │ │ │ │ │ │ └── LogBoxNotification-test.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ ├── LogBox-test.js.flow │ │ │ │ │ ├── LogBoxInspectorContainer-test.js.flow │ │ │ │ │ └── LogBoxNotificationContainer-test.js.flow │ │ │ ├── Modal │ │ │ │ ├── Modal.js.flow │ │ │ │ ├── NativeModalManager.js.flow │ │ │ │ ├── RCTModalHostViewNativeComponent.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ └── Modal-test.js.flow │ │ │ ├── NativeModules │ │ │ │ └── specs │ │ │ │ │ ├── NativeAnimationsDebugModule.js.flow │ │ │ │ │ ├── NativeDevMenu.js.flow │ │ │ │ │ ├── NativeDevSettings.js.flow │ │ │ │ │ ├── NativeDeviceEventManager.js.flow │ │ │ │ │ ├── NativeDialogManagerAndroid.js.flow │ │ │ │ │ ├── NativeLogBox.js.flow │ │ │ │ │ ├── NativeRedBox.js.flow │ │ │ │ │ └── NativeSourceCode.js.flow │ │ │ ├── Network │ │ │ │ ├── FormData.js.flow │ │ │ │ ├── NativeNetworkingAndroid.js.flow │ │ │ │ ├── NativeNetworkingIOS.js.flow │ │ │ │ ├── RCTNetworking.android.js.flow │ │ │ │ ├── XMLHttpRequest.js.flow │ │ │ │ ├── convertRequestBody.js.flow │ │ │ │ └── fetch.js.flow │ │ │ ├── NewAppScreen │ │ │ │ ├── components │ │ │ │ │ ├── Colors.js.flow │ │ │ │ │ ├── DebugInstructions.js.flow │ │ │ │ │ ├── Header.js.flow │ │ │ │ │ ├── HermesBadge.js.flow │ │ │ │ │ ├── LearnMoreLinks.js.flow │ │ │ │ │ └── ReloadInstructions.js.flow │ │ │ │ └── index.js.flow │ │ │ ├── Performance │ │ │ │ ├── NativeJSCSamplingProfiler.js.flow │ │ │ │ ├── PureComponentDebug.js.flow │ │ │ │ ├── QuickPerformanceLogger.js.flow │ │ │ │ ├── SamplingProfiler.js.flow │ │ │ │ └── Systrace.js.flow │ │ │ ├── PermissionsAndroid │ │ │ │ ├── NativePermissionsAndroid.js.flow │ │ │ │ └── PermissionsAndroid.js.flow │ │ │ ├── Pressability │ │ │ │ ├── HoverState.js.flow │ │ │ │ ├── Pressability.js.flow │ │ │ │ ├── PressabilityDebug.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── Pressability-test.js.flow │ │ │ │ └── usePressability.js.flow │ │ │ ├── Promise.js.flow │ │ │ ├── PushNotificationIOS │ │ │ │ ├── NativePushNotificationManagerIOS.js.flow │ │ │ │ └── PushNotificationIOS.js.flow │ │ │ ├── ReactNative │ │ │ │ ├── AppContainer.js.flow │ │ │ │ ├── AppRegistry.js.flow │ │ │ │ ├── DummyUIManager.js.flow │ │ │ │ ├── FabricUIManager.js.flow │ │ │ │ ├── HeadlessJsTaskError.js.flow │ │ │ │ ├── I18nManager.js.flow │ │ │ │ ├── NativeHeadlessJsTaskSupport.js.flow │ │ │ │ ├── NativeI18nManager.js.flow │ │ │ │ ├── NativeUIManager.js.flow │ │ │ │ ├── PaperUIManager.js.flow │ │ │ │ ├── ReactFabricInternals.js.flow │ │ │ │ ├── RootTag.js.flow │ │ │ │ ├── UIManager.js.flow │ │ │ │ ├── UIManagerProperties.js.flow │ │ │ │ ├── getNativeComponentAttributes.js.flow │ │ │ │ ├── queryLayoutByID.js.flow │ │ │ │ ├── renderApplication.js.flow │ │ │ │ └── requireNativeComponent.js.flow │ │ │ ├── ReactPrivate │ │ │ │ ├── ReactNativePrivateInitializeCore.js.flow │ │ │ │ └── ReactNativePrivateInterface.js.flow │ │ │ ├── Reliability │ │ │ │ └── UserFlow.js.flow │ │ │ ├── Renderer │ │ │ │ └── shims │ │ │ │ │ ├── ReactFabric.js.flow │ │ │ │ │ ├── ReactFeatureFlags.js.flow │ │ │ │ │ ├── ReactNative.js.flow │ │ │ │ │ ├── ReactNativeTypes.js.flow │ │ │ │ │ ├── ReactNativeViewConfigRegistry.js.flow │ │ │ │ │ └── createReactNativeComponentClass.js.flow │ │ │ ├── Settings │ │ │ │ ├── NativeSettingsManager.js.flow │ │ │ │ └── Settings.android.js.flow │ │ │ ├── Share │ │ │ │ ├── NativeShareModule.js.flow │ │ │ │ └── Share.js.flow │ │ │ ├── Storage │ │ │ │ ├── AsyncStorage.js.flow │ │ │ │ ├── NativeAsyncLocalStorage.js.flow │ │ │ │ └── NativeAsyncSQLiteDBStorage.js.flow │ │ │ ├── StyleSheet │ │ │ │ ├── EdgeInsetsPropType.js.flow │ │ │ │ ├── PlatformColorValueTypes.android.js.flow │ │ │ │ ├── PlatformColorValueTypesIOS.js.flow │ │ │ │ ├── PointPropType.js.flow │ │ │ │ ├── Rect.js.flow │ │ │ │ ├── StyleSheet.js.flow │ │ │ │ ├── StyleSheetTypes.js.flow │ │ │ │ ├── StyleSheetValidation.js.flow │ │ │ │ ├── __flowtests__ │ │ │ │ │ └── StyleSheet-flowtest.js.flow │ │ │ │ ├── flattenStyle.js.flow │ │ │ │ ├── normalizeColor.js.flow │ │ │ │ ├── processColor.js.flow │ │ │ │ ├── processColorArray.js.flow │ │ │ │ ├── processTransform.js.flow │ │ │ │ ├── setNormalizedColorAlpha.js.flow │ │ │ │ └── splitLayoutProps.js.flow │ │ │ ├── Text │ │ │ │ ├── Text.js.flow │ │ │ │ ├── TextAncestor.js.flow │ │ │ │ ├── TextInjection.js.flow │ │ │ │ ├── TextNativeComponent.js.flow │ │ │ │ └── TextProps.js.flow │ │ │ ├── TurboModule │ │ │ │ ├── RCTExport.js.flow │ │ │ │ ├── TurboModuleRegistry.js.flow │ │ │ │ └── samples │ │ │ │ │ └── NativeSampleTurboModule.js.flow │ │ │ ├── Types │ │ │ │ ├── CodegenTypes.js.flow │ │ │ │ └── CoreEventTypes.js.flow │ │ │ ├── UTFSequence.js.flow │ │ │ ├── Utilities │ │ │ │ ├── Appearance.js.flow │ │ │ │ ├── BackHandler.android.js.flow │ │ │ │ ├── DebugEnvironment.js.flow │ │ │ │ ├── DevSettings.js.flow │ │ │ │ ├── DeviceInfo.js.flow │ │ │ │ ├── Dimensions.js.flow │ │ │ │ ├── GlobalPerformanceLogger.js.flow │ │ │ │ ├── HMRClient.js.flow │ │ │ │ ├── HMRClientProdShim.js.flow │ │ │ │ ├── JSDevSupportModule.js.flow │ │ │ │ ├── LoadingView.android.js.flow │ │ │ │ ├── NativeAppearance.js.flow │ │ │ │ ├── NativeDevLoadingView.js.flow │ │ │ │ ├── NativeDevSplitBundleLoader.js.flow │ │ │ │ ├── NativeDeviceInfo.js.flow │ │ │ │ ├── NativeJSDevSupport.js.flow │ │ │ │ ├── NativePlatformConstantsAndroid.js.flow │ │ │ │ ├── NativePlatformConstantsIOS.js.flow │ │ │ │ ├── PerformanceLoggerContext.js.flow │ │ │ │ ├── PixelRatio.js.flow │ │ │ │ ├── Platform.android.js.flow │ │ │ │ ├── PolyfillFunctions.js.flow │ │ │ │ ├── RCTLog.js.flow │ │ │ │ ├── ReactNativeTestTools.js.flow │ │ │ │ ├── SceneTracker.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ ├── PerformanceLogger-test.js.flow │ │ │ │ │ ├── setAndForwardRef-test.js.flow │ │ │ │ │ └── stringifySafe-test.js.flow │ │ │ │ ├── binaryToBase64.js.flow │ │ │ │ ├── clamp.js.flow │ │ │ │ ├── codegenNativeCommands.js.flow │ │ │ │ ├── codegenNativeComponent.js.flow │ │ │ │ ├── createPerformanceLogger.js.flow │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev.js.flow │ │ │ │ ├── defineLazyObjectProperty.js.flow │ │ │ │ ├── deprecatedPropType.js.flow │ │ │ │ ├── differ │ │ │ │ │ ├── deepDiffer.js.flow │ │ │ │ │ ├── insetsDiffer.js.flow │ │ │ │ │ └── pointsDiffer.js.flow │ │ │ │ ├── dismissKeyboard.js.flow │ │ │ │ ├── groupByEveryN.js.flow │ │ │ │ ├── infoLog.js.flow │ │ │ │ ├── logError.js.flow │ │ │ │ ├── mapWithSeparator.js.flow │ │ │ │ ├── mergeIntoFast.js.flow │ │ │ │ ├── registerGeneratedViewConfig.js.flow │ │ │ │ ├── setAndForwardRef.js.flow │ │ │ │ ├── stringifySafe.js.flow │ │ │ │ ├── truncate.js.flow │ │ │ │ ├── useColorScheme.js.flow │ │ │ │ ├── useWindowDimensions.js.flow │ │ │ │ ├── verifyComponentAttributeEquivalence.js.flow │ │ │ │ └── warnOnce.js.flow │ │ │ ├── Vibration │ │ │ │ ├── NativeVibration.js.flow │ │ │ │ └── Vibration.js.flow │ │ │ ├── WebSocket │ │ │ │ ├── NativeWebSocketModule.js.flow │ │ │ │ └── WebSocket.js.flow │ │ │ ├── YellowBox │ │ │ │ ├── YellowBoxDeprecated.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ └── YellowBoxDeprecated-test.js.flow │ │ │ ├── __flowtests__ │ │ │ │ └── ReactNativeTypes-flowtest.js.flow │ │ │ ├── promiseRejectionIsError.js.flow │ │ │ ├── promiseRejectionTrackingOptions.js.flow │ │ │ └── vendor │ │ │ │ ├── core │ │ │ │ └── ErrorUtils.js.flow │ │ │ │ └── emitter │ │ │ │ ├── EventEmitter.js.flow │ │ │ │ ├── _EmitterSubscription.js.flow │ │ │ │ ├── _EventEmitter.js.flow │ │ │ │ ├── _EventSubscription.js.flow │ │ │ │ └── _EventSubscriptionVendor.js.flow │ │ ├── ReactAndroid │ │ │ └── src │ │ │ │ └── androidTest │ │ │ │ └── js │ │ │ │ ├── NativeIdTestModule.js.flow │ │ │ │ ├── ScrollViewTestModule.js.flow │ │ │ │ └── UIManagerTestModule.js.flow │ │ ├── ReactCommon │ │ │ └── hermes │ │ │ │ └── inspector │ │ │ │ └── tools │ │ │ │ └── msggen │ │ │ │ └── src │ │ │ │ ├── Command.js.flow │ │ │ │ ├── Converters.js.flow │ │ │ │ ├── Event.js.flow │ │ │ │ ├── GeneratedHeader.js.flow │ │ │ │ ├── Graph.js.flow │ │ │ │ ├── HeaderWriter.js.flow │ │ │ │ ├── ImplementationWriter.js.flow │ │ │ │ ├── Property.js.flow │ │ │ │ ├── Type.js.flow │ │ │ │ └── index.js.flow │ │ ├── flow-typed │ │ │ └── npm │ │ │ │ ├── base64-js_v1.x.x.js.flow │ │ │ │ ├── pretty-format_v26.x.x.js.flow │ │ │ │ ├── promise_v8.x.x.js.flow │ │ │ │ ├── prop-types_v15.x.x.js.flow │ │ │ │ └── stacktrace-parser_v0.1.x.js.flow │ │ ├── flow │ │ │ ├── Position.js.flow │ │ │ ├── Promise.js.flow │ │ │ ├── Stringish.js.flow │ │ │ ├── console.js.flow │ │ │ └── use-subscription.js.flow │ │ ├── index.js.flow │ │ ├── interface.js.flow │ │ ├── jest │ │ │ ├── mockScrollView.js.flow │ │ │ ├── preprocessor.js.flow │ │ │ └── renderer.js.flow │ │ ├── metro.config.js.flow │ │ └── packages │ │ │ ├── assets │ │ │ ├── path-support.js.flow │ │ │ └── registry.js.flow │ │ │ ├── babel-plugin-codegen │ │ │ └── __test_fixtures__ │ │ │ │ ├── failures.js.flow │ │ │ │ └── fixtures.js.flow │ │ │ ├── normalize-color │ │ │ └── base.js.flow │ │ │ ├── polyfills │ │ │ └── error-guard.js.flow │ │ │ ├── react-native-codegen │ │ │ ├── e2e │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ArrayPropsNativeComponent.js.flow │ │ │ │ │ │ ├── BooleanPropNativeComponent.js.flow │ │ │ │ │ │ ├── ColorPropNativeComponent.js.flow │ │ │ │ │ │ ├── EdgeInsetsPropNativeComponent.js.flow │ │ │ │ │ │ ├── EnumPropNativeComponent.js.flow │ │ │ │ │ │ ├── EventNestedObjectPropsNativeComponent.js.flow │ │ │ │ │ │ ├── EventPropsNativeComponent.js.flow │ │ │ │ │ │ ├── FloatPropsNativeComponent.js.flow │ │ │ │ │ │ ├── ImagePropNativeComponent.js.flow │ │ │ │ │ │ ├── IntegerPropNativeComponent.js.flow │ │ │ │ │ │ ├── InterfaceOnlyNativeComponent.js.flow │ │ │ │ │ │ ├── MultiNativePropNativeComponent.js.flow │ │ │ │ │ │ ├── NoPropsNoEventsNativeComponent.js.flow │ │ │ │ │ │ ├── ObjectPropsNativeComponent.js.flow │ │ │ │ │ │ ├── PointPropNativeComponent.js.flow │ │ │ │ │ │ └── StringPropNativeComponent.js.flow │ │ │ │ │ └── modules │ │ │ │ │ │ ├── NativeArrayTurboModule.js.flow │ │ │ │ │ │ ├── NativeBooleanTurboModule.js.flow │ │ │ │ │ │ ├── NativeCallbackTurboModule.js.flow │ │ │ │ │ │ ├── NativeNullableTurboModule.js.flow │ │ │ │ │ │ ├── NativeNumberTurboModule.js.flow │ │ │ │ │ │ ├── NativeObjectTurboModule.js.flow │ │ │ │ │ │ ├── NativeOptionalObjectTurboModule.js.flow │ │ │ │ │ │ ├── NativePromiseTurboModule.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModule.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModuleArrays.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModuleNullable.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModuleNullableAndOptional.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModuleOptional.js.flow │ │ │ │ │ │ └── NativeStringTurboModule.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ └── modules │ │ │ │ │ └── GenerateModuleObjCpp-test.js.flow │ │ │ ├── scripts │ │ │ │ └── build.js.flow │ │ │ └── src │ │ │ │ ├── CodegenSchema.js.flow │ │ │ │ ├── SchemaValidator.js.flow │ │ │ │ ├── __tests__ │ │ │ │ └── SchemaValidator-test.js.flow │ │ │ │ ├── cli │ │ │ │ ├── combine │ │ │ │ │ ├── combine-js-to-schema-cli.js.flow │ │ │ │ │ └── combine-js-to-schema.js.flow │ │ │ │ ├── generators │ │ │ │ │ └── generate-all.js.flow │ │ │ │ ├── parser │ │ │ │ │ ├── parser-cli.js.flow │ │ │ │ │ └── parser.js.flow │ │ │ │ └── verify_with_old_codegen.js.flow │ │ │ │ ├── generators │ │ │ │ ├── RNCodegen.js.flow │ │ │ │ ├── components │ │ │ │ │ ├── CppHelpers.js.flow │ │ │ │ │ ├── GenerateComponentDescriptorH.js.flow │ │ │ │ │ ├── GenerateComponentHObjCpp.js.flow │ │ │ │ │ ├── GenerateEventEmitterCpp.js.flow │ │ │ │ │ ├── GenerateEventEmitterH.js.flow │ │ │ │ │ ├── GeneratePropsCpp.js.flow │ │ │ │ │ ├── GeneratePropsH.js.flow │ │ │ │ │ ├── GeneratePropsJavaDelegate.js.flow │ │ │ │ │ ├── GeneratePropsJavaInterface.js.flow │ │ │ │ │ ├── GenerateShadowNodeCpp.js.flow │ │ │ │ │ ├── GenerateShadowNodeH.js.flow │ │ │ │ │ ├── GenerateTests.js.flow │ │ │ │ │ ├── GenerateViewConfigJs.js.flow │ │ │ │ │ ├── JavaHelpers.js.flow │ │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── GenerateComponentDescriptorH-test.js.flow │ │ │ │ │ │ ├── GenerateComponentHObjCpp-test.js.flow │ │ │ │ │ │ ├── GenerateEventEmitterCpp-test.js.flow │ │ │ │ │ │ ├── GenerateEventEmitterH-test.js.flow │ │ │ │ │ │ ├── GeneratePropsCpp-test.js.flow │ │ │ │ │ │ ├── GeneratePropsH-test.js.flow │ │ │ │ │ │ ├── GeneratePropsJavaDelegate-test.js.flow │ │ │ │ │ │ ├── GeneratePropsJavaInterface-test.js.flow │ │ │ │ │ │ ├── GenerateShadowNodeCpp-test.js.flow │ │ │ │ │ │ ├── GenerateShadowNodeH-test.js.flow │ │ │ │ │ │ ├── GenerateTests-test.js.flow │ │ │ │ │ │ └── GenerateViewConfigJs-test.js.flow │ │ │ │ └── modules │ │ │ │ │ ├── GenerateModuleCpp.js.flow │ │ │ │ │ ├── GenerateModuleH.js.flow │ │ │ │ │ ├── GenerateModuleJavaSpec.js.flow │ │ │ │ │ ├── GenerateModuleJniCpp.js.flow │ │ │ │ │ ├── GenerateModuleJniH.js.flow │ │ │ │ │ ├── GenerateModuleObjCpp │ │ │ │ │ ├── StructCollector.js.flow │ │ │ │ │ ├── Utils.js.flow │ │ │ │ │ ├── header │ │ │ │ │ │ ├── serializeConstantsStruct.js.flow │ │ │ │ │ │ ├── serializeRegularStruct.js.flow │ │ │ │ │ │ └── serializeStruct.js.flow │ │ │ │ │ ├── index.js.flow │ │ │ │ │ ├── serializeMethod.js.flow │ │ │ │ │ └── source │ │ │ │ │ │ └── serializeModule.js.flow │ │ │ │ │ ├── Utils.js.flow │ │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ ├── GenerateModuleCpp-test.js.flow │ │ │ │ │ ├── GenerateModuleH-test.js.flow │ │ │ │ │ ├── GenerateModuleHObjCpp-test.js.flow │ │ │ │ │ ├── GenerateModuleJavaSpec-test.js.flow │ │ │ │ │ ├── GenerateModuleJniCpp-test.js.flow │ │ │ │ │ ├── GenerateModuleJniH-test.js.flow │ │ │ │ │ └── GenerateModuleMm-test.js.flow │ │ │ │ └── parsers │ │ │ │ ├── flow │ │ │ │ ├── components │ │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ │ ├── failures.js.flow │ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── component-parser-test.js.flow │ │ │ │ │ ├── commands.js.flow │ │ │ │ │ ├── events.js.flow │ │ │ │ │ ├── extends.js.flow │ │ │ │ │ ├── index.js.flow │ │ │ │ │ ├── options.js.flow │ │ │ │ │ ├── props.js.flow │ │ │ │ │ └── schema.js.flow │ │ │ │ ├── errors.js.flow │ │ │ │ ├── index.js.flow │ │ │ │ ├── modules │ │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ │ ├── failures.js.flow │ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── module-parser-e2e-test.js.flow │ │ │ │ │ │ └── module-parser-snapshot-test.js.flow │ │ │ │ │ ├── errors.js.flow │ │ │ │ │ ├── index.js.flow │ │ │ │ │ ├── schema.js.flow │ │ │ │ │ └── utils.js.flow │ │ │ │ └── utils.js.flow │ │ │ │ └── schema │ │ │ │ └── index.js.flow │ │ │ └── rn-tester │ │ │ ├── NativeModuleExample │ │ │ └── NativeScreenshotManager.js.flow │ │ │ ├── RCTTest │ │ │ └── RCTSnapshotNativeComponent.js.flow │ │ │ └── js │ │ │ ├── RNTesterApp.android.js.flow │ │ │ ├── RNTesterAppShared.js.flow │ │ │ ├── components │ │ │ ├── ExamplePage.js.flow │ │ │ ├── ListExampleShared.js.flow │ │ │ ├── RNTesterBlock.js.flow │ │ │ ├── RNTesterBookmarkButton.js.flow │ │ │ ├── RNTesterButton.js.flow │ │ │ ├── RNTesterComponentTitle.js.flow │ │ │ ├── RNTesterDocumentationURL.js.flow │ │ │ ├── RNTesterEmptyBookmarksState.js.flow │ │ │ ├── RNTesterExampleFilter.js.flow │ │ │ ├── RNTesterExampleList.js.flow │ │ │ ├── RNTesterHeader.js.flow │ │ │ ├── RNTesterListFilters.js.flow │ │ │ ├── RNTesterNavbar.js.flow │ │ │ ├── RNTesterPage.js.flow │ │ │ ├── RNTesterSettingSwitchRow.js.flow │ │ │ ├── RNTesterTheme.js.flow │ │ │ ├── RNTesterTitle.js.flow │ │ │ ├── TextInlineView.js.flow │ │ │ ├── TextLegend.js.flow │ │ │ ├── UseCase.js.flow │ │ │ └── createExamplePage.js.flow │ │ │ ├── examples │ │ │ ├── Accessibility │ │ │ │ └── AccessibilityIOSExample.js.flow │ │ │ ├── ActionSheetIOS │ │ │ │ └── ActionSheetIOSExample.js.flow │ │ │ ├── ActivityIndicator │ │ │ │ └── ActivityIndicatorExample.js.flow │ │ │ ├── Alert │ │ │ │ └── AlertIOSExample.js.flow │ │ │ ├── Animated │ │ │ │ ├── AnimatedExample.js.flow │ │ │ │ └── AnimatedGratuitousApp │ │ │ │ │ ├── AnExApp.js.flow │ │ │ │ │ ├── AnExBobble.js.flow │ │ │ │ │ ├── AnExChained.js.flow │ │ │ │ │ ├── AnExScroll.js.flow │ │ │ │ │ ├── AnExSet.js.flow │ │ │ │ │ └── AnExTilt.js.flow │ │ │ ├── AppState │ │ │ │ └── AppStateExample.js.flow │ │ │ ├── Appearance │ │ │ │ └── AppearanceExample.js.flow │ │ │ ├── Button │ │ │ │ └── ButtonExample.js.flow │ │ │ ├── Crash │ │ │ │ └── CrashExample.js.flow │ │ │ ├── DevSettings │ │ │ │ └── DevSettingsExample.js.flow │ │ │ ├── Dimensions │ │ │ │ └── DimensionsExample.js.flow │ │ │ ├── FlatList │ │ │ │ └── FlatListExample.js.flow │ │ │ ├── Image │ │ │ │ ├── ImageCapInsetsExample.js.flow │ │ │ │ └── ImageExample.js.flow │ │ │ ├── InputAccessoryView │ │ │ │ └── InputAccessoryViewExample.js.flow │ │ │ ├── JSResponderHandlerExample │ │ │ │ └── JSResponderHandlerExample.js.flow │ │ │ ├── KeyboardAvoidingView │ │ │ │ └── KeyboardAvoidingViewExample.js.flow │ │ │ ├── Layout │ │ │ │ ├── LayoutAnimationExample.js.flow │ │ │ │ ├── LayoutEventsExample.js.flow │ │ │ │ └── LayoutExample.js.flow │ │ │ ├── Modal │ │ │ │ └── ModalExample.js.flow │ │ │ ├── MultiColumn │ │ │ │ └── MultiColumnExample.js.flow │ │ │ ├── NativeAnimation │ │ │ │ └── NativeAnimationsExample.js.flow │ │ │ ├── NewAppScreen │ │ │ │ └── NewAppScreenExample.js.flow │ │ │ ├── OrientationChange │ │ │ │ └── OrientationChangeExample.js.flow │ │ │ ├── PanResponder │ │ │ │ └── PanResponderExample.js.flow │ │ │ ├── PermissionsAndroid │ │ │ │ └── PermissionsExample.js.flow │ │ │ ├── PlatformColor │ │ │ │ └── PlatformColorExample.js.flow │ │ │ ├── PointerEvents │ │ │ │ └── PointerEventsExample.js.flow │ │ │ ├── Pressable │ │ │ │ └── PressableExample.js.flow │ │ │ ├── RCTRootView │ │ │ │ └── RCTRootViewIOSExample.js.flow │ │ │ ├── RTL │ │ │ │ └── RTLExample.js.flow │ │ │ ├── RootViewSizeFlexibilityExample │ │ │ │ └── RootViewSizeFlexibilityExampleApp.js.flow │ │ │ ├── SafeAreaView │ │ │ │ └── SafeAreaViewExample.js.flow │ │ │ ├── ScrollView │ │ │ │ ├── ScrollViewAnimatedExample.js.flow │ │ │ │ ├── ScrollViewExample.js.flow │ │ │ │ └── ScrollViewSimpleExample.js.flow │ │ │ ├── SectionList │ │ │ │ └── SectionListExample.js.flow │ │ │ ├── SetPropertiesExample │ │ │ │ └── SetPropertiesExampleApp.js.flow │ │ │ ├── Share │ │ │ │ └── ShareExample.js.flow │ │ │ ├── Snapshot │ │ │ │ └── SnapshotExample.js.flow │ │ │ ├── StatusBar │ │ │ │ └── StatusBarExample.js.flow │ │ │ ├── Switch │ │ │ │ └── SwitchExample.js.flow │ │ │ ├── Text │ │ │ │ └── TextExample.android.js.flow │ │ │ ├── TextInput │ │ │ │ ├── TextInputExample.android.js.flow │ │ │ │ └── TextInputSharedExamples.js.flow │ │ │ ├── Timer │ │ │ │ └── TimerExample.js.flow │ │ │ ├── ToastAndroid │ │ │ │ └── ToastAndroidExample.android.js.flow │ │ │ ├── Touchable │ │ │ │ └── TouchableExample.js.flow │ │ │ ├── Transform │ │ │ │ └── TransformExample.js.flow │ │ │ ├── TransparentHitTest │ │ │ │ └── TransparentHitTestExample.js.flow │ │ │ ├── TurboModule │ │ │ │ ├── SampleTurboModuleExample.js.flow │ │ │ │ └── TurboModuleExample.js.flow │ │ │ ├── Vibration │ │ │ │ └── VibrationExample.js.flow │ │ │ ├── View │ │ │ │ └── ViewExample.js.flow │ │ │ ├── WebSocket │ │ │ │ ├── http_test_server.js.flow │ │ │ │ └── websocket_test_server.js.flow │ │ │ └── XHR │ │ │ │ ├── XHRExample.js.flow │ │ │ │ ├── XHRExampleAbortController.js.flow │ │ │ │ ├── XHRExampleBinaryUpload.js.flow │ │ │ │ ├── XHRExampleDownload.js.flow │ │ │ │ ├── XHRExampleFetch.js.flow │ │ │ │ └── XHRExampleOnTimeOut.js.flow │ │ │ ├── types │ │ │ └── RNTesterTypes.js.flow │ │ │ └── utils │ │ │ ├── RNTesterList.android.js.flow │ │ │ ├── RNTesterReducer.js.flow │ │ │ ├── RNTesterStatePersister.js.flow │ │ │ ├── testerStateUtils.js.flow │ │ │ └── useAsyncStorageReducer.js.flow │ └── outputs │ │ ├── Libraries │ │ ├── ActionSheetIOS │ │ │ ├── ActionSheetIOS.d.ts │ │ │ └── NativeActionSheetManager.d.ts │ │ ├── Alert │ │ │ ├── Alert.d.ts │ │ │ └── NativeAlertManager.d.ts │ │ ├── Animated │ │ │ ├── Animated.d.ts │ │ │ ├── AnimatedEvent.d.ts │ │ │ ├── AnimatedImplementation.d.ts │ │ │ ├── AnimatedMock.d.ts │ │ │ ├── Easing.d.ts │ │ │ ├── NativeAnimatedHelper.d.ts │ │ │ ├── NativeAnimatedModule.d.ts │ │ │ ├── NativeAnimatedTurboModule.d.ts │ │ │ ├── SpringConfig.d.ts │ │ │ ├── animations │ │ │ │ ├── Animation.d.ts │ │ │ │ ├── DecayAnimation.d.ts │ │ │ │ ├── SpringAnimation.d.ts │ │ │ │ └── TimingAnimation.d.ts │ │ │ ├── bezier.d.ts │ │ │ ├── components │ │ │ │ ├── AnimatedFlatList.d.ts │ │ │ │ ├── AnimatedImage.d.ts │ │ │ │ ├── AnimatedScrollView.d.ts │ │ │ │ ├── AnimatedSectionList.d.ts │ │ │ │ ├── AnimatedText.d.ts │ │ │ │ └── AnimatedView.d.ts │ │ │ ├── createAnimatedComponent.d.ts │ │ │ └── nodes │ │ │ │ ├── AnimatedAddition.d.ts │ │ │ │ ├── AnimatedDiffClamp.d.ts │ │ │ │ ├── AnimatedDivision.d.ts │ │ │ │ ├── AnimatedInterpolation.d.ts │ │ │ │ ├── AnimatedModulo.d.ts │ │ │ │ ├── AnimatedMultiplication.d.ts │ │ │ │ ├── AnimatedNode.d.ts │ │ │ │ ├── AnimatedProps.d.ts │ │ │ │ ├── AnimatedStyle.d.ts │ │ │ │ ├── AnimatedSubtraction.d.ts │ │ │ │ ├── AnimatedTracking.d.ts │ │ │ │ ├── AnimatedTransform.d.ts │ │ │ │ ├── AnimatedValue.d.ts │ │ │ │ ├── AnimatedValueXY.d.ts │ │ │ │ └── AnimatedWithChildren.d.ts │ │ ├── AppState │ │ │ ├── AppState.d.ts │ │ │ └── NativeAppState.d.ts │ │ ├── BatchedBridge │ │ │ ├── BatchedBridge.d.ts │ │ │ ├── MessageQueue.d.ts │ │ │ └── NativeModules.d.ts │ │ ├── Blob │ │ │ ├── Blob.d.ts │ │ │ ├── BlobManager.d.ts │ │ │ ├── BlobRegistry.d.ts │ │ │ ├── BlobTypes.d.ts │ │ │ ├── File.d.ts │ │ │ ├── FileReader.d.ts │ │ │ ├── NativeBlobModule.d.ts │ │ │ └── NativeFileReaderModule.d.ts │ │ ├── BugReporting │ │ │ ├── BugReporting.d.ts │ │ │ ├── NativeBugReporting.d.ts │ │ │ ├── dumpReactTree.d.ts │ │ │ └── getReactData.d.ts │ │ ├── Components │ │ │ ├── AccessibilityInfo │ │ │ │ ├── AccessibilityInfo.d.ts │ │ │ │ ├── NativeAccessibilityInfo.d.ts │ │ │ │ └── NativeAccessibilityManager.d.ts │ │ │ ├── ActivityIndicator │ │ │ │ ├── ActivityIndicator.d.ts │ │ │ │ └── ActivityIndicatorViewNativeComponent.d.ts │ │ │ ├── Button.d.ts │ │ │ ├── Clipboard │ │ │ │ ├── Clipboard.d.ts │ │ │ │ └── NativeClipboard.d.ts │ │ │ ├── DatePicker │ │ │ │ └── RCTDatePickerNativeComponent.d.ts │ │ │ ├── DatePickerAndroid │ │ │ │ ├── DatePickerAndroid.d.ts │ │ │ │ ├── DatePickerAndroidTypes.d.ts │ │ │ │ └── NativeDatePickerAndroid.d.ts │ │ │ ├── DrawerAndroid │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.d.ts │ │ │ │ └── DrawerLayoutAndroid.d.ts │ │ │ ├── Keyboard │ │ │ │ ├── Keyboard.d.ts │ │ │ │ ├── KeyboardAvoidingView.d.ts │ │ │ │ └── NativeKeyboardObserver.d.ts │ │ │ ├── MaskedView │ │ │ │ ├── MaskedViewIOS.d.ts │ │ │ │ └── RCTMaskedViewNativeComponent.d.ts │ │ │ ├── Picker │ │ │ │ ├── AndroidDialogPickerNativeComponent.d.ts │ │ │ │ ├── AndroidDialogPickerViewConfig.d.ts │ │ │ │ ├── AndroidDropdownPickerNativeComponent.d.ts │ │ │ │ ├── Picker.d.ts │ │ │ │ ├── PickerAndroid.d.ts │ │ │ │ ├── RCTPickerNativeComponent.d.ts │ │ │ │ └── RCTPickerViewConfig.d.ts │ │ │ ├── Pressable │ │ │ │ ├── Pressable.d.ts │ │ │ │ └── useAndroidRippleForView.d.ts │ │ │ ├── ProgressBarAndroid │ │ │ │ ├── ProgressBarAndroid.d.ts │ │ │ │ └── ProgressBarAndroidNativeComponent.d.ts │ │ │ ├── ProgressViewIOS │ │ │ │ └── RCTProgressViewNativeComponent.d.ts │ │ │ ├── RefreshControl │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.d.ts │ │ │ │ ├── PullToRefreshViewNativeComponent.d.ts │ │ │ │ └── RefreshControl.d.ts │ │ │ ├── SafeAreaView │ │ │ │ ├── RCTSafeAreaViewNativeComponent.d.ts │ │ │ │ └── SafeAreaView.d.ts │ │ │ ├── ScrollResponder.d.ts │ │ │ ├── ScrollView │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.d.ts │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.d.ts │ │ │ │ ├── ScrollContentViewNativeComponent.d.ts │ │ │ │ ├── ScrollView.d.ts │ │ │ │ ├── ScrollViewCommands.d.ts │ │ │ │ ├── ScrollViewContext.d.ts │ │ │ │ ├── ScrollViewNativeComponent.d.ts │ │ │ │ ├── ScrollViewNativeComponentType.d.ts │ │ │ │ ├── ScrollViewStickyHeader.d.ts │ │ │ │ ├── ScrollViewViewConfig.d.ts │ │ │ │ └── processDecelerationRate.d.ts │ │ │ ├── SegmentedControlIOS │ │ │ │ └── RCTSegmentedControlNativeComponent.d.ts │ │ │ ├── Slider │ │ │ │ ├── Slider.d.ts │ │ │ │ └── SliderNativeComponent.d.ts │ │ │ ├── Sound │ │ │ │ ├── NativeSoundManager.d.ts │ │ │ │ └── SoundManager.d.ts │ │ │ ├── StaticRenderer.d.ts │ │ │ ├── StatusBar │ │ │ │ ├── NativeStatusBarManagerAndroid.d.ts │ │ │ │ ├── NativeStatusBarManagerIOS.d.ts │ │ │ │ ├── StatusBar.d.ts │ │ │ │ └── StatusBarIOS.d.ts │ │ │ ├── Switch │ │ │ │ ├── AndroidSwitchNativeComponent.d.ts │ │ │ │ ├── Switch.d.ts │ │ │ │ └── SwitchNativeComponent.d.ts │ │ │ ├── TextInput │ │ │ │ ├── AndroidTextInputNativeComponent.d.ts │ │ │ │ ├── AndroidTextInputViewConfig.d.ts │ │ │ │ ├── InputAccessoryView.d.ts │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.d.ts │ │ │ │ ├── RCTMultilineTextInputNativeComponent.d.ts │ │ │ │ ├── RCTSingelineTextInputNativeComponent.d.ts │ │ │ │ ├── RCTSinglelineTextInputViewConfig.d.ts │ │ │ │ ├── TextInput.d.ts │ │ │ │ ├── TextInputNativeCommands.d.ts │ │ │ │ └── TextInputState.d.ts │ │ │ ├── ToastAndroid │ │ │ │ ├── NativeToastAndroid.d.ts │ │ │ │ └── ToastAndroid.d.ts │ │ │ ├── Touchable │ │ │ │ ├── PooledClass.d.ts │ │ │ │ ├── Touchable.d.ts │ │ │ │ ├── TouchableBounce.d.ts │ │ │ │ ├── TouchableHighlight.d.ts │ │ │ │ ├── TouchableNativeFeedback.d.ts │ │ │ │ ├── TouchableOpacity.d.ts │ │ │ │ ├── TouchableWithoutFeedback.d.ts │ │ │ │ └── ensurePositiveDelayProps.d.ts │ │ │ ├── UnimplementedViews │ │ │ │ ├── UnimplementedNativeViewNativeComponent.d.ts │ │ │ │ └── UnimplementedView.d.ts │ │ │ └── View │ │ │ │ ├── ReactNativeStyleAttributes.d.ts │ │ │ │ ├── ReactNativeViewAttributes.d.ts │ │ │ │ ├── ReactNativeViewViewConfig.d.ts │ │ │ │ ├── ReactNativeViewViewConfigAndroid.d.ts │ │ │ │ ├── View.d.ts │ │ │ │ ├── ViewAccessibility.d.ts │ │ │ │ ├── ViewNativeComponent.d.ts │ │ │ │ └── ViewPropTypes.d.ts │ │ ├── Core │ │ │ ├── Devtools │ │ │ │ ├── getDevServer.d.ts │ │ │ │ ├── openFileInEditor.d.ts │ │ │ │ ├── openURLInBrowser.d.ts │ │ │ │ ├── parseErrorStack.d.ts │ │ │ │ ├── parseHermesStack.d.ts │ │ │ │ └── symbolicateStackTrace.d.ts │ │ │ ├── ExceptionsManager.d.ts │ │ │ ├── InitializeCore.d.ts │ │ │ ├── NativeExceptionsManager.d.ts │ │ │ ├── ReactFiberErrorDialog.d.ts │ │ │ ├── ReactNativeVersion.d.ts │ │ │ ├── ReactNativeVersionCheck.d.ts │ │ │ ├── SegmentFetcher │ │ │ │ └── NativeSegmentFetcher.d.ts │ │ │ ├── Timers │ │ │ │ ├── JSTimers.d.ts │ │ │ │ └── NativeTiming.d.ts │ │ │ ├── checkNativeVersion.d.ts │ │ │ ├── polyfillPromise.d.ts │ │ │ ├── setUpAlert.d.ts │ │ │ ├── setUpBatchedBridge.d.ts │ │ │ ├── setUpDeveloperTools.d.ts │ │ │ ├── setUpErrorHandling.d.ts │ │ │ ├── setUpGlobals.d.ts │ │ │ ├── setUpNavigator.d.ts │ │ │ ├── setUpPerformance.d.ts │ │ │ ├── setUpReactDevTools.d.ts │ │ │ ├── setUpReactRefresh.d.ts │ │ │ ├── setUpRegeneratorRuntime.d.ts │ │ │ ├── setUpSegmentFetcher.d.ts │ │ │ ├── setUpSystrace.d.ts │ │ │ ├── setUpTimers.d.ts │ │ │ └── setUpXHR.d.ts │ │ ├── DeprecatedPropTypes │ │ │ ├── DeprecatedEdgeInsetsPropType.d.ts │ │ │ ├── DeprecatedImagePropType.d.ts │ │ │ ├── DeprecatedImageStylePropTypes.d.ts │ │ │ ├── DeprecatedLayoutPropTypes.d.ts │ │ │ ├── DeprecatedPointPropType.d.ts │ │ │ ├── DeprecatedShadowPropTypesIOS.d.ts │ │ │ ├── DeprecatedStyleSheetPropType.d.ts │ │ │ ├── DeprecatedTextInputPropTypes.d.ts │ │ │ ├── DeprecatedTextPropTypes.d.ts │ │ │ ├── DeprecatedTextStylePropTypes.d.ts │ │ │ ├── DeprecatedTransformPropTypes.d.ts │ │ │ ├── DeprecatedViewAccessibility.d.ts │ │ │ ├── DeprecatedViewPropTypes.d.ts │ │ │ ├── DeprecatedViewStylePropTypes.d.ts │ │ │ └── deprecatedCreateStrictShapeTypeChecker.d.ts │ │ ├── EventEmitter │ │ │ ├── NativeEventEmitter.d.ts │ │ │ ├── RCTDeviceEventEmitter.d.ts │ │ │ ├── RCTEventEmitter.d.ts │ │ │ └── RCTNativeAppEventEmitter.d.ts │ │ ├── HeapCapture │ │ │ ├── HeapCapture.d.ts │ │ │ └── NativeJSCHeapCapture.d.ts │ │ ├── Image │ │ │ ├── AssetRegistry.d.ts │ │ │ ├── AssetSourceResolver.d.ts │ │ │ ├── Image.d.ts │ │ │ ├── ImageAnalyticsTagContext.d.ts │ │ │ ├── ImageBackground.d.ts │ │ │ ├── ImagePickerIOS.d.ts │ │ │ ├── ImageProps.d.ts │ │ │ ├── ImageResizeMode.d.ts │ │ │ ├── ImageSource.d.ts │ │ │ ├── ImageViewNativeComponent.d.ts │ │ │ ├── ImageViewViewConfig.d.ts │ │ │ ├── NativeImageEditor.d.ts │ │ │ ├── NativeImageLoaderAndroid.d.ts │ │ │ ├── NativeImageLoaderIOS.d.ts │ │ │ ├── NativeImagePickerIOS.d.ts │ │ │ ├── NativeImageStoreAndroid.d.ts │ │ │ ├── NativeImageStoreIOS.d.ts │ │ │ ├── RelativeImageStub.d.ts │ │ │ ├── TextInlineImageNativeComponent.d.ts │ │ │ ├── nativeImageSource.d.ts │ │ │ └── resolveAssetSource.d.ts │ │ ├── Interaction │ │ │ ├── Batchinator.d.ts │ │ │ ├── BridgeSpyStallHandler.d.ts │ │ │ ├── FrameRateLogger.d.ts │ │ │ ├── InteractionManager.d.ts │ │ │ ├── InteractionMixin.d.ts │ │ │ ├── InteractionStallDebugger.d.ts │ │ │ ├── JSEventLoopWatchdog.d.ts │ │ │ ├── NativeFrameRateLogger.d.ts │ │ │ ├── PanResponder.d.ts │ │ │ └── TaskQueue.d.ts │ │ ├── LayoutAnimation │ │ │ └── LayoutAnimation.d.ts │ │ ├── Linking │ │ │ ├── Linking.d.ts │ │ │ ├── NativeIntentAndroid.d.ts │ │ │ └── NativeLinkingManager.d.ts │ │ ├── Lists │ │ │ ├── FillRateHelper.d.ts │ │ │ ├── FlatList.d.ts │ │ │ ├── SectionList.d.ts │ │ │ ├── ViewabilityHelper.d.ts │ │ │ ├── VirtualizeUtils.d.ts │ │ │ ├── VirtualizedList.d.ts │ │ │ ├── VirtualizedListContext.d.ts │ │ │ └── VirtualizedSectionList.d.ts │ │ ├── LogBox │ │ │ ├── Data │ │ │ │ ├── LogBoxData.d.ts │ │ │ │ ├── LogBoxLog.d.ts │ │ │ │ ├── LogBoxSymbolication.d.ts │ │ │ │ └── parseLogBoxLog.d.ts │ │ │ ├── LogBox.d.ts │ │ │ ├── LogBoxInspectorContainer.d.ts │ │ │ ├── LogBoxNotificationContainer.d.ts │ │ │ └── UI │ │ │ │ ├── AnsiHighlight.d.ts │ │ │ │ ├── LogBoxButton.d.ts │ │ │ │ ├── LogBoxInspector.d.ts │ │ │ │ ├── LogBoxInspectorCodeFrame.d.ts │ │ │ │ ├── LogBoxInspectorFooter.d.ts │ │ │ │ ├── LogBoxInspectorHeader.d.ts │ │ │ │ ├── LogBoxInspectorMessageHeader.d.ts │ │ │ │ ├── LogBoxInspectorReactFrames.d.ts │ │ │ │ ├── LogBoxInspectorSection.d.ts │ │ │ │ ├── LogBoxInspectorSourceMapStatus.d.ts │ │ │ │ ├── LogBoxInspectorStackFrame.d.ts │ │ │ │ ├── LogBoxInspectorStackFrames.d.ts │ │ │ │ ├── LogBoxMessage.d.ts │ │ │ │ ├── LogBoxNotification.d.ts │ │ │ │ └── LogBoxStyle.d.ts │ │ ├── Modal │ │ │ ├── Modal.d.ts │ │ │ ├── NativeModalManager.d.ts │ │ │ └── RCTModalHostViewNativeComponent.d.ts │ │ ├── NativeModules │ │ │ └── specs │ │ │ │ ├── NativeAnimationsDebugModule.d.ts │ │ │ │ ├── NativeDevMenu.d.ts │ │ │ │ ├── NativeDevSettings.d.ts │ │ │ │ ├── NativeDeviceEventManager.d.ts │ │ │ │ ├── NativeDialogManagerAndroid.d.ts │ │ │ │ ├── NativeLogBox.d.ts │ │ │ │ ├── NativeRedBox.d.ts │ │ │ │ └── NativeSourceCode.d.ts │ │ ├── Network │ │ │ ├── FormData.d.ts │ │ │ ├── NativeNetworkingAndroid.d.ts │ │ │ ├── NativeNetworkingIOS.d.ts │ │ │ ├── RCTNetworking.d.ts │ │ │ ├── XMLHttpRequest.d.ts │ │ │ ├── convertRequestBody.d.ts │ │ │ └── fetch.d.ts │ │ ├── Performance │ │ │ ├── NativeJSCSamplingProfiler.d.ts │ │ │ ├── PureComponentDebug.d.ts │ │ │ ├── QuickPerformanceLogger.d.ts │ │ │ ├── SamplingProfiler.d.ts │ │ │ └── Systrace.d.ts │ │ ├── PermissionsAndroid │ │ │ ├── NativePermissionsAndroid.d.ts │ │ │ └── PermissionsAndroid.d.ts │ │ ├── Pressability │ │ │ ├── HoverState.d.ts │ │ │ ├── Pressability.d.ts │ │ │ ├── PressabilityDebug.d.ts │ │ │ └── usePressability.d.ts │ │ ├── PushNotificationIOS │ │ │ ├── NativePushNotificationManagerIOS.d.ts │ │ │ └── PushNotificationIOS.d.ts │ │ ├── ReactNative │ │ │ ├── AppContainer.d.ts │ │ │ ├── AppRegistry.d.ts │ │ │ ├── DummyUIManager.d.ts │ │ │ ├── FabricUIManager.d.ts │ │ │ ├── HeadlessJsTaskError.d.ts │ │ │ ├── I18nManager.d.ts │ │ │ ├── NativeHeadlessJsTaskSupport.d.ts │ │ │ ├── NativeI18nManager.d.ts │ │ │ ├── NativeUIManager.d.ts │ │ │ ├── PaperUIManager.d.ts │ │ │ ├── ReactFabricInternals.d.ts │ │ │ ├── RootTag.d.ts │ │ │ ├── UIManager.d.ts │ │ │ ├── UIManagerProperties.d.ts │ │ │ ├── getNativeComponentAttributes.d.ts │ │ │ ├── queryLayoutByID.d.ts │ │ │ ├── renderApplication.d.ts │ │ │ └── requireNativeComponent.d.ts │ │ ├── Reliability │ │ │ └── UserFlow.d.ts │ │ ├── Renderer │ │ │ └── shims │ │ │ │ ├── ReactFabric.d.ts │ │ │ │ ├── ReactFeatureFlags.d.ts │ │ │ │ ├── ReactNative.d.ts │ │ │ │ ├── ReactNativeTypes.d.ts │ │ │ │ ├── ReactNativeViewConfigRegistry.d.ts │ │ │ │ └── createReactNativeComponentClass.d.ts │ │ ├── Settings │ │ │ ├── NativeSettingsManager.d.ts │ │ │ └── Settings.d.ts │ │ ├── Share │ │ │ ├── NativeShareModule.d.ts │ │ │ └── Share.d.ts │ │ ├── Storage │ │ │ ├── AsyncStorage.d.ts │ │ │ ├── NativeAsyncLocalStorage.d.ts │ │ │ └── NativeAsyncSQLiteDBStorage.d.ts │ │ ├── StyleSheet │ │ │ ├── EdgeInsetsPropType.d.ts │ │ │ ├── PlatformColorValueTypes.d.ts │ │ │ ├── PlatformColorValueTypesIOS.d.ts │ │ │ ├── PointPropType.d.ts │ │ │ ├── Rect.d.ts │ │ │ ├── StyleSheet.d.ts │ │ │ ├── StyleSheetTypes.d.ts │ │ │ ├── StyleSheetValidation.d.ts │ │ │ ├── flattenStyle.d.ts │ │ │ ├── normalizeColor.d.ts │ │ │ ├── processColor.d.ts │ │ │ ├── processColorArray.d.ts │ │ │ ├── processTransform.d.ts │ │ │ ├── setNormalizedColorAlpha.d.ts │ │ │ └── splitLayoutProps.d.ts │ │ ├── Text │ │ │ ├── Text.d.ts │ │ │ ├── TextAncestor.d.ts │ │ │ ├── TextInjection.d.ts │ │ │ ├── TextNativeComponent.d.ts │ │ │ └── TextProps.d.ts │ │ ├── TurboModule │ │ │ ├── RCTExport.d.ts │ │ │ ├── TurboModuleRegistry.d.ts │ │ │ └── samples │ │ │ │ └── NativeSampleTurboModule.d.ts │ │ ├── Types │ │ │ ├── CodegenTypes.d.ts │ │ │ └── CoreEventTypes.d.ts │ │ ├── UTFSequence.d.ts │ │ ├── Utilities │ │ │ ├── Appearance.d.ts │ │ │ ├── BackHandler.d.ts │ │ │ ├── DebugEnvironment.d.ts │ │ │ ├── DevSettings.d.ts │ │ │ ├── DeviceInfo.d.ts │ │ │ ├── Dimensions.d.ts │ │ │ ├── GlobalPerformanceLogger.d.ts │ │ │ ├── HMRClient.d.ts │ │ │ ├── HMRClientProdShim.d.ts │ │ │ ├── JSDevSupportModule.d.ts │ │ │ ├── LoadingView.d.ts │ │ │ ├── NativeAppearance.d.ts │ │ │ ├── NativeDevLoadingView.d.ts │ │ │ ├── NativeDevSplitBundleLoader.d.ts │ │ │ ├── NativeDeviceInfo.d.ts │ │ │ ├── NativeJSDevSupport.d.ts │ │ │ ├── NativePlatformConstantsAndroid.d.ts │ │ │ ├── NativePlatformConstantsIOS.d.ts │ │ │ ├── PerformanceLoggerContext.d.ts │ │ │ ├── PixelRatio.d.ts │ │ │ ├── Platform.d.ts │ │ │ ├── PolyfillFunctions.d.ts │ │ │ ├── RCTLog.d.ts │ │ │ ├── ReactNativeTestTools.d.ts │ │ │ ├── SceneTracker.d.ts │ │ │ ├── binaryToBase64.d.ts │ │ │ ├── clamp.d.ts │ │ │ ├── codegenNativeCommands.d.ts │ │ │ ├── codegenNativeComponent.d.ts │ │ │ ├── createPerformanceLogger.d.ts │ │ │ ├── deepFreezeAndThrowOnMutationInDev.d.ts │ │ │ ├── defineLazyObjectProperty.d.ts │ │ │ ├── deprecatedPropType.d.ts │ │ │ ├── differ │ │ │ │ ├── deepDiffer.d.ts │ │ │ │ ├── insetsDiffer.d.ts │ │ │ │ └── pointsDiffer.d.ts │ │ │ ├── dismissKeyboard.d.ts │ │ │ ├── groupByEveryN.d.ts │ │ │ ├── infoLog.d.ts │ │ │ ├── logError.d.ts │ │ │ ├── mapWithSeparator.d.ts │ │ │ ├── mergeIntoFast.d.ts │ │ │ ├── registerGeneratedViewConfig.d.ts │ │ │ ├── setAndForwardRef.d.ts │ │ │ ├── stringifySafe.d.ts │ │ │ ├── truncate.d.ts │ │ │ ├── useColorScheme.d.ts │ │ │ ├── useWindowDimensions.d.ts │ │ │ ├── verifyComponentAttributeEquivalence.d.ts │ │ │ └── warnOnce.d.ts │ │ ├── Vibration │ │ │ ├── NativeVibration.d.ts │ │ │ └── Vibration.d.ts │ │ ├── WebSocket │ │ │ ├── NativeWebSocketModule.d.ts │ │ │ └── WebSocket.d.ts │ │ ├── YellowBox │ │ │ └── YellowBoxDeprecated.d.ts │ │ └── vendor │ │ │ └── emitter │ │ │ ├── EventEmitter.d.ts │ │ │ ├── _EmitterSubscription.d.ts │ │ │ ├── _EventEmitter.d.ts │ │ │ ├── _EventSubscription.d.ts │ │ │ └── _EventSubscriptionVendor.d.ts │ │ ├── TypeScriptSupplementals │ │ ├── Animated.d.ts │ │ ├── DeprecatedDefinitelyTypedExports.d.ts │ │ ├── DeprecatedLegacyDefinitelyTypedPropsExports.d.ts │ │ ├── globals.d.ts │ │ └── index.d.ts │ │ ├── index.d.ts │ │ └── tsconfig.json │ ├── ios │ ├── hint │ │ ├── Libraries │ │ │ ├── ActionSheetIOS │ │ │ │ ├── ActionSheetIOS.hint.json │ │ │ │ └── NativeActionSheetManager.hint.json │ │ │ ├── Alert │ │ │ │ ├── Alert.hint.json │ │ │ │ ├── NativeAlertManager.hint.json │ │ │ │ └── RCTAlertManager.ios.hint.json │ │ │ ├── Animated │ │ │ │ ├── Animated.hint.json │ │ │ │ ├── AnimatedEvent.hint.json │ │ │ │ ├── AnimatedImplementation.hint.json │ │ │ │ ├── AnimatedMock.hint.json │ │ │ │ ├── Easing.hint.json │ │ │ │ ├── NativeAnimatedHelper.hint.json │ │ │ │ ├── NativeAnimatedModule.hint.json │ │ │ │ ├── NativeAnimatedTurboModule.hint.json │ │ │ │ ├── SpringConfig.hint.json │ │ │ │ ├── animations │ │ │ │ │ ├── Animation.hint.json │ │ │ │ │ ├── DecayAnimation.hint.json │ │ │ │ │ ├── SpringAnimation.hint.json │ │ │ │ │ └── TimingAnimation.hint.json │ │ │ │ ├── bezier.hint.json │ │ │ │ ├── components │ │ │ │ │ ├── AnimatedFlatList.hint.json │ │ │ │ │ ├── AnimatedImage.hint.json │ │ │ │ │ ├── AnimatedScrollView.hint.json │ │ │ │ │ ├── AnimatedSectionList.hint.json │ │ │ │ │ ├── AnimatedText.hint.json │ │ │ │ │ └── AnimatedView.hint.json │ │ │ │ ├── createAnimatedComponent.hint.json │ │ │ │ └── nodes │ │ │ │ │ ├── AnimatedAddition.hint.json │ │ │ │ │ ├── AnimatedDiffClamp.hint.json │ │ │ │ │ ├── AnimatedDivision.hint.json │ │ │ │ │ ├── AnimatedInterpolation.hint.json │ │ │ │ │ ├── AnimatedModulo.hint.json │ │ │ │ │ ├── AnimatedMultiplication.hint.json │ │ │ │ │ ├── AnimatedNode.hint.json │ │ │ │ │ ├── AnimatedProps.hint.json │ │ │ │ │ ├── AnimatedStyle.hint.json │ │ │ │ │ ├── AnimatedSubtraction.hint.json │ │ │ │ │ ├── AnimatedTracking.hint.json │ │ │ │ │ ├── AnimatedTransform.hint.json │ │ │ │ │ ├── AnimatedValue.hint.json │ │ │ │ │ ├── AnimatedValueXY.hint.json │ │ │ │ │ └── AnimatedWithChildren.hint.json │ │ │ ├── AppState │ │ │ │ ├── AppState.hint.json │ │ │ │ └── NativeAppState.hint.json │ │ │ ├── BatchedBridge │ │ │ │ ├── BatchedBridge.hint.json │ │ │ │ ├── MessageQueue.hint.json │ │ │ │ └── NativeModules.hint.json │ │ │ ├── Blob │ │ │ │ ├── Blob.hint.json │ │ │ │ ├── BlobManager.hint.json │ │ │ │ ├── BlobRegistry.hint.json │ │ │ │ ├── BlobTypes.hint.json │ │ │ │ ├── File.hint.json │ │ │ │ ├── FileReader.hint.json │ │ │ │ ├── NativeBlobModule.hint.json │ │ │ │ └── NativeFileReaderModule.hint.json │ │ │ ├── BugReporting │ │ │ │ ├── BugReporting.hint.json │ │ │ │ ├── NativeBugReporting.hint.json │ │ │ │ ├── dumpReactTree.hint.json │ │ │ │ └── getReactData.hint.json │ │ │ ├── Components │ │ │ │ ├── AccessibilityInfo │ │ │ │ │ ├── AccessibilityInfo.ios.hint.json │ │ │ │ │ ├── NativeAccessibilityInfo.hint.json │ │ │ │ │ └── NativeAccessibilityManager.hint.json │ │ │ │ ├── ActivityIndicator │ │ │ │ │ ├── ActivityIndicator.hint.json │ │ │ │ │ └── ActivityIndicatorViewNativeComponent.hint.json │ │ │ │ ├── Button.hint.json │ │ │ │ ├── Clipboard │ │ │ │ │ ├── Clipboard.hint.json │ │ │ │ │ └── NativeClipboard.hint.json │ │ │ │ ├── DatePicker │ │ │ │ │ ├── DatePickerIOS.ios.hint.json │ │ │ │ │ └── RCTDatePickerNativeComponent.hint.json │ │ │ │ ├── DatePickerAndroid │ │ │ │ │ ├── DatePickerAndroid.ios.hint.json │ │ │ │ │ ├── DatePickerAndroidTypes.hint.json │ │ │ │ │ └── NativeDatePickerAndroid.hint.json │ │ │ │ ├── DrawerAndroid │ │ │ │ │ └── AndroidDrawerLayoutNativeComponent.hint.json │ │ │ │ ├── Keyboard │ │ │ │ │ ├── Keyboard.hint.json │ │ │ │ │ ├── KeyboardAvoidingView.hint.json │ │ │ │ │ └── NativeKeyboardObserver.hint.json │ │ │ │ ├── MaskedView │ │ │ │ │ ├── MaskedViewIOS.ios.hint.json │ │ │ │ │ └── RCTMaskedViewNativeComponent.hint.json │ │ │ │ ├── Picker │ │ │ │ │ ├── AndroidDialogPickerNativeComponent.hint.json │ │ │ │ │ ├── AndroidDialogPickerViewConfig.hint.json │ │ │ │ │ ├── AndroidDropdownPickerNativeComponent.hint.json │ │ │ │ │ ├── Picker.hint.json │ │ │ │ │ ├── PickerIOS.ios.hint.json │ │ │ │ │ ├── RCTPickerNativeComponent.hint.json │ │ │ │ │ └── RCTPickerViewConfig.hint.json │ │ │ │ ├── Pressable │ │ │ │ │ ├── Pressable.hint.json │ │ │ │ │ └── useAndroidRippleForView.hint.json │ │ │ │ ├── ProgressBarAndroid │ │ │ │ │ └── ProgressBarAndroidNativeComponent.hint.json │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ ├── ProgressViewIOS.ios.hint.json │ │ │ │ │ └── RCTProgressViewNativeComponent.hint.json │ │ │ │ ├── RefreshControl │ │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.hint.json │ │ │ │ │ ├── PullToRefreshViewNativeComponent.hint.json │ │ │ │ │ └── RefreshControl.hint.json │ │ │ │ ├── SafeAreaView │ │ │ │ │ ├── RCTSafeAreaViewNativeComponent.hint.json │ │ │ │ │ └── SafeAreaView.hint.json │ │ │ │ ├── ScrollResponder.hint.json │ │ │ │ ├── ScrollView │ │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.hint.json │ │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollContentViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollView.hint.json │ │ │ │ │ ├── ScrollViewCommands.hint.json │ │ │ │ │ ├── ScrollViewContext.hint.json │ │ │ │ │ ├── ScrollViewNativeComponent.hint.json │ │ │ │ │ ├── ScrollViewNativeComponentType.hint.json │ │ │ │ │ ├── ScrollViewStickyHeader.hint.json │ │ │ │ │ ├── ScrollViewViewConfig.hint.json │ │ │ │ │ └── processDecelerationRate.hint.json │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ ├── RCTSegmentedControlNativeComponent.hint.json │ │ │ │ │ └── SegmentedControlIOS.ios.hint.json │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider.hint.json │ │ │ │ │ └── SliderNativeComponent.hint.json │ │ │ │ ├── Sound │ │ │ │ │ ├── NativeSoundManager.hint.json │ │ │ │ │ └── SoundManager.hint.json │ │ │ │ ├── StaticContainer.react.hint.json │ │ │ │ ├── StaticRenderer.hint.json │ │ │ │ ├── StatusBar │ │ │ │ │ ├── NativeStatusBarManagerAndroid.hint.json │ │ │ │ │ ├── NativeStatusBarManagerIOS.hint.json │ │ │ │ │ ├── StatusBar.hint.json │ │ │ │ │ └── StatusBarIOS.hint.json │ │ │ │ ├── Switch │ │ │ │ │ ├── AndroidSwitchNativeComponent.hint.json │ │ │ │ │ ├── Switch.hint.json │ │ │ │ │ └── SwitchNativeComponent.hint.json │ │ │ │ ├── TextInput │ │ │ │ │ ├── AndroidTextInputNativeComponent.hint.json │ │ │ │ │ ├── AndroidTextInputViewConfig.hint.json │ │ │ │ │ ├── InputAccessoryView.hint.json │ │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.hint.json │ │ │ │ │ ├── RCTMultilineTextInputNativeComponent.hint.json │ │ │ │ │ ├── RCTSingelineTextInputNativeComponent.hint.json │ │ │ │ │ ├── RCTSinglelineTextInputViewConfig.hint.json │ │ │ │ │ ├── TextInput.hint.json │ │ │ │ │ ├── TextInputNativeCommands.hint.json │ │ │ │ │ └── TextInputState.hint.json │ │ │ │ ├── ToastAndroid │ │ │ │ │ └── NativeToastAndroid.hint.json │ │ │ │ ├── Touchable │ │ │ │ │ ├── PooledClass.hint.json │ │ │ │ │ ├── Touchable.hint.json │ │ │ │ │ ├── TouchableBounce.hint.json │ │ │ │ │ ├── TouchableHighlight.hint.json │ │ │ │ │ ├── TouchableNativeFeedback.hint.json │ │ │ │ │ ├── TouchableOpacity.hint.json │ │ │ │ │ ├── TouchableWithoutFeedback.hint.json │ │ │ │ │ └── ensurePositiveDelayProps.hint.json │ │ │ │ ├── UnimplementedViews │ │ │ │ │ ├── UnimplementedNativeViewNativeComponent.hint.json │ │ │ │ │ └── UnimplementedView.hint.json │ │ │ │ └── View │ │ │ │ │ ├── ReactNativeStyleAttributes.hint.json │ │ │ │ │ ├── ReactNativeViewAttributes.hint.json │ │ │ │ │ ├── ReactNativeViewViewConfig.hint.json │ │ │ │ │ ├── ReactNativeViewViewConfigAndroid.hint.json │ │ │ │ │ ├── View.hint.json │ │ │ │ │ ├── ViewAccessibility.hint.json │ │ │ │ │ ├── ViewNativeComponent.hint.json │ │ │ │ │ └── ViewPropTypes.hint.json │ │ │ ├── Core │ │ │ │ ├── Devtools │ │ │ │ │ ├── getDevServer.hint.json │ │ │ │ │ ├── openFileInEditor.hint.json │ │ │ │ │ ├── openURLInBrowser.hint.json │ │ │ │ │ ├── parseErrorStack.hint.json │ │ │ │ │ ├── parseHermesStack.hint.json │ │ │ │ │ └── symbolicateStackTrace.hint.json │ │ │ │ ├── ExceptionsManager.hint.json │ │ │ │ ├── InitializeCore.hint.json │ │ │ │ ├── NativeExceptionsManager.hint.json │ │ │ │ ├── ReactFiberErrorDialog.hint.json │ │ │ │ ├── ReactNativeVersion.hint.json │ │ │ │ ├── ReactNativeVersionCheck.hint.json │ │ │ │ ├── SegmentFetcher │ │ │ │ │ └── NativeSegmentFetcher.hint.json │ │ │ │ ├── Timers │ │ │ │ │ ├── JSTimers.hint.json │ │ │ │ │ └── NativeTiming.hint.json │ │ │ │ ├── checkNativeVersion.hint.json │ │ │ │ ├── polyfillPromise.hint.json │ │ │ │ ├── setUpAlert.hint.json │ │ │ │ ├── setUpBatchedBridge.hint.json │ │ │ │ ├── setUpDeveloperTools.hint.json │ │ │ │ ├── setUpErrorHandling.hint.json │ │ │ │ ├── setUpGlobals.hint.json │ │ │ │ ├── setUpNavigator.hint.json │ │ │ │ ├── setUpPerformance.hint.json │ │ │ │ ├── setUpReactDevTools.hint.json │ │ │ │ ├── setUpReactRefresh.hint.json │ │ │ │ ├── setUpRegeneratorRuntime.hint.json │ │ │ │ ├── setUpSegmentFetcher.hint.json │ │ │ │ ├── setUpSystrace.hint.json │ │ │ │ ├── setUpTimers.hint.json │ │ │ │ └── setUpXHR.hint.json │ │ │ ├── DeprecatedPropTypes │ │ │ │ ├── DeprecatedEdgeInsetsPropType.hint.json │ │ │ │ ├── DeprecatedImagePropType.hint.json │ │ │ │ ├── DeprecatedImageStylePropTypes.hint.json │ │ │ │ ├── DeprecatedLayoutPropTypes.hint.json │ │ │ │ ├── DeprecatedPointPropType.hint.json │ │ │ │ ├── DeprecatedShadowPropTypesIOS.hint.json │ │ │ │ ├── DeprecatedStyleSheetPropType.hint.json │ │ │ │ ├── DeprecatedTextInputPropTypes.hint.json │ │ │ │ ├── DeprecatedTextPropTypes.hint.json │ │ │ │ ├── DeprecatedTextStylePropTypes.hint.json │ │ │ │ ├── DeprecatedTransformPropTypes.hint.json │ │ │ │ ├── DeprecatedViewAccessibility.hint.json │ │ │ │ ├── DeprecatedViewPropTypes.hint.json │ │ │ │ ├── DeprecatedViewStylePropTypes.hint.json │ │ │ │ └── deprecatedCreateStrictShapeTypeChecker.hint.json │ │ │ ├── EventEmitter │ │ │ │ ├── NativeEventEmitter.hint.json │ │ │ │ ├── RCTDeviceEventEmitter.hint.json │ │ │ │ ├── RCTEventEmitter.hint.json │ │ │ │ └── RCTNativeAppEventEmitter.hint.json │ │ │ ├── HeapCapture │ │ │ │ ├── HeapCapture.hint.json │ │ │ │ └── NativeJSCHeapCapture.hint.json │ │ │ ├── Image │ │ │ │ ├── AssetRegistry.hint.json │ │ │ │ ├── AssetSourceResolver.hint.json │ │ │ │ ├── Image.ios.hint.json │ │ │ │ ├── ImageAnalyticsTagContext.hint.json │ │ │ │ ├── ImageBackground.hint.json │ │ │ │ ├── ImagePickerIOS.hint.json │ │ │ │ ├── ImageProps.hint.json │ │ │ │ ├── ImageResizeMode.hint.json │ │ │ │ ├── ImageSource.hint.json │ │ │ │ ├── ImageViewNativeComponent.hint.json │ │ │ │ ├── ImageViewViewConfig.hint.json │ │ │ │ ├── NativeImageEditor.hint.json │ │ │ │ ├── NativeImageLoaderAndroid.hint.json │ │ │ │ ├── NativeImageLoaderIOS.hint.json │ │ │ │ ├── NativeImagePickerIOS.hint.json │ │ │ │ ├── NativeImageStoreAndroid.hint.json │ │ │ │ ├── NativeImageStoreIOS.hint.json │ │ │ │ ├── RelativeImageStub.hint.json │ │ │ │ ├── TextInlineImageNativeComponent.hint.json │ │ │ │ ├── nativeImageSource.hint.json │ │ │ │ └── resolveAssetSource.hint.json │ │ │ ├── Interaction │ │ │ │ ├── Batchinator.hint.json │ │ │ │ ├── BridgeSpyStallHandler.hint.json │ │ │ │ ├── FrameRateLogger.hint.json │ │ │ │ ├── InteractionManager.hint.json │ │ │ │ ├── InteractionMixin.hint.json │ │ │ │ ├── InteractionStallDebugger.hint.json │ │ │ │ ├── JSEventLoopWatchdog.hint.json │ │ │ │ ├── NativeFrameRateLogger.hint.json │ │ │ │ ├── PanResponder.hint.json │ │ │ │ └── TaskQueue.hint.json │ │ │ ├── LayoutAnimation │ │ │ │ └── LayoutAnimation.hint.json │ │ │ ├── Linking │ │ │ │ ├── Linking.hint.json │ │ │ │ ├── NativeIntentAndroid.hint.json │ │ │ │ └── NativeLinkingManager.hint.json │ │ │ ├── Lists │ │ │ │ ├── FillRateHelper.hint.json │ │ │ │ ├── FlatList.hint.json │ │ │ │ ├── SectionList.hint.json │ │ │ │ ├── ViewabilityHelper.hint.json │ │ │ │ ├── VirtualizeUtils.hint.json │ │ │ │ ├── VirtualizedList.hint.json │ │ │ │ ├── VirtualizedListContext.hint.json │ │ │ │ └── VirtualizedSectionList.hint.json │ │ │ ├── LogBox │ │ │ │ ├── Data │ │ │ │ │ ├── LogBoxData.hint.json │ │ │ │ │ ├── LogBoxLog.hint.json │ │ │ │ │ ├── LogBoxSymbolication.hint.json │ │ │ │ │ └── parseLogBoxLog.hint.json │ │ │ │ ├── LogBox.hint.json │ │ │ │ ├── LogBoxInspectorContainer.hint.json │ │ │ │ ├── LogBoxNotificationContainer.hint.json │ │ │ │ └── UI │ │ │ │ │ ├── AnsiHighlight.hint.json │ │ │ │ │ ├── LogBoxButton.hint.json │ │ │ │ │ ├── LogBoxInspector.hint.json │ │ │ │ │ ├── LogBoxInspectorCodeFrame.hint.json │ │ │ │ │ ├── LogBoxInspectorFooter.hint.json │ │ │ │ │ ├── LogBoxInspectorHeader.hint.json │ │ │ │ │ ├── LogBoxInspectorMessageHeader.hint.json │ │ │ │ │ ├── LogBoxInspectorReactFrames.hint.json │ │ │ │ │ ├── LogBoxInspectorSection.hint.json │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus.hint.json │ │ │ │ │ ├── LogBoxInspectorStackFrame.hint.json │ │ │ │ │ ├── LogBoxInspectorStackFrames.hint.json │ │ │ │ │ ├── LogBoxMessage.hint.json │ │ │ │ │ ├── LogBoxNotification.hint.json │ │ │ │ │ └── LogBoxStyle.hint.json │ │ │ ├── Modal │ │ │ │ ├── Modal.hint.json │ │ │ │ ├── NativeModalManager.hint.json │ │ │ │ └── RCTModalHostViewNativeComponent.hint.json │ │ │ ├── NativeModules │ │ │ │ └── specs │ │ │ │ │ ├── NativeAnimationsDebugModule.hint.json │ │ │ │ │ ├── NativeDevMenu.hint.json │ │ │ │ │ ├── NativeDevSettings.hint.json │ │ │ │ │ ├── NativeDeviceEventManager.hint.json │ │ │ │ │ ├── NativeDialogManagerAndroid.hint.json │ │ │ │ │ ├── NativeLogBox.hint.json │ │ │ │ │ ├── NativeRedBox.hint.json │ │ │ │ │ └── NativeSourceCode.hint.json │ │ │ ├── Network │ │ │ │ ├── FormData.hint.json │ │ │ │ ├── NativeNetworkingAndroid.hint.json │ │ │ │ ├── NativeNetworkingIOS.hint.json │ │ │ │ ├── RCTNetworking.ios.hint.json │ │ │ │ ├── XMLHttpRequest.hint.json │ │ │ │ ├── convertRequestBody.hint.json │ │ │ │ └── fetch.hint.json │ │ │ ├── Performance │ │ │ │ ├── NativeJSCSamplingProfiler.hint.json │ │ │ │ ├── PureComponentDebug.hint.json │ │ │ │ ├── QuickPerformanceLogger.hint.json │ │ │ │ ├── SamplingProfiler.hint.json │ │ │ │ └── Systrace.hint.json │ │ │ ├── PermissionsAndroid │ │ │ │ ├── NativePermissionsAndroid.hint.json │ │ │ │ └── PermissionsAndroid.hint.json │ │ │ ├── Pressability │ │ │ │ ├── HoverState.hint.json │ │ │ │ ├── Pressability.hint.json │ │ │ │ ├── PressabilityDebug.hint.json │ │ │ │ └── usePressability.hint.json │ │ │ ├── PushNotificationIOS │ │ │ │ ├── NativePushNotificationManagerIOS.hint.json │ │ │ │ └── PushNotificationIOS.hint.json │ │ │ ├── ReactNative │ │ │ │ ├── AppContainer.hint.json │ │ │ │ ├── AppRegistry.hint.json │ │ │ │ ├── DummyUIManager.hint.json │ │ │ │ ├── FabricUIManager.hint.json │ │ │ │ ├── HeadlessJsTaskError.hint.json │ │ │ │ ├── I18nManager.hint.json │ │ │ │ ├── NativeHeadlessJsTaskSupport.hint.json │ │ │ │ ├── NativeI18nManager.hint.json │ │ │ │ ├── NativeUIManager.hint.json │ │ │ │ ├── PaperUIManager.hint.json │ │ │ │ ├── ReactFabricInternals.hint.json │ │ │ │ ├── RootTag.hint.json │ │ │ │ ├── UIManager.hint.json │ │ │ │ ├── UIManagerProperties.hint.json │ │ │ │ ├── getNativeComponentAttributes.hint.json │ │ │ │ ├── queryLayoutByID.hint.json │ │ │ │ ├── renderApplication.hint.json │ │ │ │ └── requireNativeComponent.hint.json │ │ │ ├── Reliability │ │ │ │ └── UserFlow.hint.json │ │ │ ├── Renderer │ │ │ │ └── shims │ │ │ │ │ ├── ReactFabric.hint.json │ │ │ │ │ ├── ReactFeatureFlags.hint.json │ │ │ │ │ ├── ReactNative.hint.json │ │ │ │ │ ├── ReactNativeTypes.hint.json │ │ │ │ │ ├── ReactNativeViewConfigRegistry.hint.json │ │ │ │ │ └── createReactNativeComponentClass.hint.json │ │ │ ├── Settings │ │ │ │ ├── NativeSettingsManager.hint.json │ │ │ │ └── Settings.ios.hint.json │ │ │ ├── Share │ │ │ │ ├── NativeShareModule.hint.json │ │ │ │ └── Share.hint.json │ │ │ ├── Storage │ │ │ │ ├── AsyncStorage.hint.json │ │ │ │ ├── NativeAsyncLocalStorage.hint.json │ │ │ │ └── NativeAsyncSQLiteDBStorage.hint.json │ │ │ ├── StyleSheet │ │ │ │ ├── EdgeInsetsPropType.hint.json │ │ │ │ ├── PlatformColorValueTypes.ios.hint.json │ │ │ │ ├── PlatformColorValueTypesIOS.hint.json │ │ │ │ ├── PlatformColorValueTypesIOS.ios.hint.json │ │ │ │ ├── PointPropType.hint.json │ │ │ │ ├── Rect.hint.json │ │ │ │ ├── StyleSheet.hint.json │ │ │ │ ├── StyleSheetTypes.hint.json │ │ │ │ ├── StyleSheetValidation.hint.json │ │ │ │ ├── flattenStyle.hint.json │ │ │ │ ├── normalizeColor.hint.json │ │ │ │ ├── processColor.hint.json │ │ │ │ ├── processColorArray.hint.json │ │ │ │ ├── processTransform.hint.json │ │ │ │ ├── setNormalizedColorAlpha.hint.json │ │ │ │ └── splitLayoutProps.hint.json │ │ │ ├── Text │ │ │ │ ├── Text.hint.json │ │ │ │ ├── TextAncestor.hint.json │ │ │ │ ├── TextInjection.hint.json │ │ │ │ ├── TextNativeComponent.hint.json │ │ │ │ └── TextProps.hint.json │ │ │ ├── TurboModule │ │ │ │ ├── RCTExport.hint.json │ │ │ │ ├── TurboModuleRegistry.hint.json │ │ │ │ └── samples │ │ │ │ │ └── NativeSampleTurboModule.hint.json │ │ │ ├── Types │ │ │ │ ├── CodegenTypes.hint.json │ │ │ │ └── CoreEventTypes.hint.json │ │ │ ├── UTFSequence.hint.json │ │ │ ├── Utilities │ │ │ │ ├── Appearance.hint.json │ │ │ │ ├── BackHandler.ios.hint.json │ │ │ │ ├── DebugEnvironment.hint.json │ │ │ │ ├── DevSettings.hint.json │ │ │ │ ├── DeviceInfo.hint.json │ │ │ │ ├── Dimensions.hint.json │ │ │ │ ├── GlobalPerformanceLogger.hint.json │ │ │ │ ├── HMRClient.hint.json │ │ │ │ ├── HMRClientProdShim.hint.json │ │ │ │ ├── JSDevSupportModule.hint.json │ │ │ │ ├── LoadingView.ios.hint.json │ │ │ │ ├── NativeAppearance.hint.json │ │ │ │ ├── NativeDevLoadingView.hint.json │ │ │ │ ├── NativeDevSplitBundleLoader.hint.json │ │ │ │ ├── NativeDeviceInfo.hint.json │ │ │ │ ├── NativeJSDevSupport.hint.json │ │ │ │ ├── NativePlatformConstantsAndroid.hint.json │ │ │ │ ├── NativePlatformConstantsIOS.hint.json │ │ │ │ ├── PerformanceLoggerContext.hint.json │ │ │ │ ├── PixelRatio.hint.json │ │ │ │ ├── Platform.ios.hint.json │ │ │ │ ├── PolyfillFunctions.hint.json │ │ │ │ ├── RCTLog.hint.json │ │ │ │ ├── ReactNativeTestTools.hint.json │ │ │ │ ├── SceneTracker.hint.json │ │ │ │ ├── binaryToBase64.hint.json │ │ │ │ ├── clamp.hint.json │ │ │ │ ├── codegenNativeCommands.hint.json │ │ │ │ ├── codegenNativeComponent.hint.json │ │ │ │ ├── createPerformanceLogger.hint.json │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev.hint.json │ │ │ │ ├── defineLazyObjectProperty.hint.json │ │ │ │ ├── deprecatedPropType.hint.json │ │ │ │ ├── differ │ │ │ │ │ ├── deepDiffer.hint.json │ │ │ │ │ ├── insetsDiffer.hint.json │ │ │ │ │ └── pointsDiffer.hint.json │ │ │ │ ├── dismissKeyboard.hint.json │ │ │ │ ├── groupByEveryN.hint.json │ │ │ │ ├── infoLog.hint.json │ │ │ │ ├── logError.hint.json │ │ │ │ ├── mapWithSeparator.hint.json │ │ │ │ ├── mergeIntoFast.hint.json │ │ │ │ ├── registerGeneratedViewConfig.hint.json │ │ │ │ ├── setAndForwardRef.hint.json │ │ │ │ ├── stringifySafe.hint.json │ │ │ │ ├── truncate.hint.json │ │ │ │ ├── useColorScheme.hint.json │ │ │ │ ├── useWindowDimensions.hint.json │ │ │ │ ├── verifyComponentAttributeEquivalence.hint.json │ │ │ │ └── warnOnce.hint.json │ │ │ ├── Vibration │ │ │ │ ├── NativeVibration.hint.json │ │ │ │ └── Vibration.hint.json │ │ │ ├── WebSocket │ │ │ │ ├── NativeWebSocketModule.hint.json │ │ │ │ └── WebSocket.hint.json │ │ │ ├── YellowBox │ │ │ │ └── YellowBoxDeprecated.hint.json │ │ │ └── vendor │ │ │ │ └── emitter │ │ │ │ ├── EventEmitter.hint.json │ │ │ │ ├── _EmitterSubscription.hint.json │ │ │ │ ├── _EventEmitter.hint.json │ │ │ │ ├── _EventSubscription.hint.json │ │ │ │ └── _EventSubscriptionVendor.hint.json │ │ ├── __flow__ │ │ │ ├── bom.hint.json │ │ │ ├── core.hint.json │ │ │ └── react.hint.json │ │ ├── hint.json │ │ └── index.hint.json │ ├── inputs │ │ ├── IntegrationTests │ │ │ ├── AccessibilityManagerTest.js.flow │ │ │ ├── AppEventsTest.js.flow │ │ │ ├── AsyncStorageTest.js.flow │ │ │ ├── GlobalEvalWithSourceUrlTest.js.flow │ │ │ ├── ImageCachePolicyTest.js.flow │ │ │ ├── ImageSnapshotTest.js.flow │ │ │ ├── IntegrationTestHarnessTest.js.flow │ │ │ ├── IntegrationTestsApp.js.flow │ │ │ ├── LayoutEventsTest.js.flow │ │ │ ├── PromiseTest.js.flow │ │ │ ├── ReactContentSizeUpdateTest.js.flow │ │ │ ├── SimpleSnapshotTest.js.flow │ │ │ ├── SizeFlexibilityUpdateTest.js.flow │ │ │ ├── SyncMethodTest.js.flow │ │ │ ├── TimersTest.js.flow │ │ │ ├── WebSocketTest.js.flow │ │ │ └── websocket_integration_test_server.js.flow │ │ ├── Libraries │ │ │ ├── ActionSheetIOS │ │ │ │ ├── ActionSheetIOS.js.flow │ │ │ │ └── NativeActionSheetManager.js.flow │ │ │ ├── Alert │ │ │ │ ├── Alert.js.flow │ │ │ │ ├── NativeAlertManager.js.flow │ │ │ │ └── RCTAlertManager.ios.js.flow │ │ │ ├── Animated │ │ │ │ ├── Animated.js.flow │ │ │ │ ├── AnimatedEvent.js.flow │ │ │ │ ├── AnimatedImplementation.js.flow │ │ │ │ ├── AnimatedMock.js.flow │ │ │ │ ├── AnimatedWeb.js.flow │ │ │ │ ├── Easing.js.flow │ │ │ │ ├── NativeAnimatedHelper.js.flow │ │ │ │ ├── NativeAnimatedModule.js.flow │ │ │ │ ├── NativeAnimatedTurboModule.js.flow │ │ │ │ ├── SpringConfig.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── bezier-test.js.flow │ │ │ │ ├── animations │ │ │ │ │ ├── Animation.js.flow │ │ │ │ │ ├── DecayAnimation.js.flow │ │ │ │ │ ├── SpringAnimation.js.flow │ │ │ │ │ └── TimingAnimation.js.flow │ │ │ │ ├── bezier.js.flow │ │ │ │ ├── components │ │ │ │ │ ├── AnimatedFlatList.js.flow │ │ │ │ │ ├── AnimatedImage.js.flow │ │ │ │ │ ├── AnimatedScrollView.js.flow │ │ │ │ │ ├── AnimatedSectionList.js.flow │ │ │ │ │ ├── AnimatedText.js.flow │ │ │ │ │ └── AnimatedView.js.flow │ │ │ │ ├── createAnimatedComponent.js.flow │ │ │ │ └── nodes │ │ │ │ │ ├── AnimatedAddition.js.flow │ │ │ │ │ ├── AnimatedDiffClamp.js.flow │ │ │ │ │ ├── AnimatedDivision.js.flow │ │ │ │ │ ├── AnimatedInterpolation.js.flow │ │ │ │ │ ├── AnimatedModulo.js.flow │ │ │ │ │ ├── AnimatedMultiplication.js.flow │ │ │ │ │ ├── AnimatedNode.js.flow │ │ │ │ │ ├── AnimatedProps.js.flow │ │ │ │ │ ├── AnimatedStyle.js.flow │ │ │ │ │ ├── AnimatedSubtraction.js.flow │ │ │ │ │ ├── AnimatedTracking.js.flow │ │ │ │ │ ├── AnimatedTransform.js.flow │ │ │ │ │ ├── AnimatedValue.js.flow │ │ │ │ │ ├── AnimatedValueXY.js.flow │ │ │ │ │ └── AnimatedWithChildren.js.flow │ │ │ ├── AppState │ │ │ │ ├── AppState.js.flow │ │ │ │ └── NativeAppState.js.flow │ │ │ ├── BatchedBridge │ │ │ │ ├── BatchedBridge.js.flow │ │ │ │ ├── MessageQueue.js.flow │ │ │ │ ├── NativeModules.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ └── MessageQueueTestConfig.js.flow │ │ │ ├── Blob │ │ │ │ ├── Blob.js.flow │ │ │ │ ├── BlobManager.js.flow │ │ │ │ ├── BlobRegistry.js.flow │ │ │ │ ├── BlobTypes.js.flow │ │ │ │ ├── File.js.flow │ │ │ │ ├── FileReader.js.flow │ │ │ │ ├── NativeBlobModule.js.flow │ │ │ │ ├── NativeFileReaderModule.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ ├── BlobModule.js.flow │ │ │ │ │ └── FileReaderModule.js.flow │ │ │ ├── BugReporting │ │ │ │ ├── BugReporting.js.flow │ │ │ │ ├── NativeBugReporting.js.flow │ │ │ │ ├── dumpReactTree.js.flow │ │ │ │ └── getReactData.js.flow │ │ │ ├── Components │ │ │ │ ├── AccessibilityInfo │ │ │ │ │ ├── AccessibilityInfo.ios.js.flow │ │ │ │ │ ├── NativeAccessibilityInfo.js.flow │ │ │ │ │ └── NativeAccessibilityManager.js.flow │ │ │ │ ├── ActivityIndicator │ │ │ │ │ ├── ActivityIndicator.js.flow │ │ │ │ │ ├── ActivityIndicatorViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ActivityIndicator-test.js.flow │ │ │ │ ├── Button.js.flow │ │ │ │ ├── Clipboard │ │ │ │ │ ├── Clipboard.js.flow │ │ │ │ │ └── NativeClipboard.js.flow │ │ │ │ ├── DatePicker │ │ │ │ │ ├── DatePickerIOS.ios.js.flow │ │ │ │ │ ├── RCTDatePickerNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── DatePickerIOS-test.js.flow │ │ │ │ ├── DatePickerAndroid │ │ │ │ │ ├── DatePickerAndroid.ios.js.flow │ │ │ │ │ ├── DatePickerAndroidTypes.js.flow │ │ │ │ │ └── NativeDatePickerAndroid.js.flow │ │ │ │ ├── DrawerAndroid │ │ │ │ │ ├── AndroidDrawerLayoutNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── DrawerAndroid-test.js.flow │ │ │ │ ├── Keyboard │ │ │ │ │ ├── Keyboard.js.flow │ │ │ │ │ ├── KeyboardAvoidingView.js.flow │ │ │ │ │ ├── NativeKeyboardObserver.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Keyboard-test.js.flow │ │ │ │ ├── MaskedView │ │ │ │ │ ├── MaskedViewIOS.ios.js.flow │ │ │ │ │ ├── RCTMaskedViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── MaskedViewIOS-test.js.flow │ │ │ │ ├── Picker │ │ │ │ │ ├── AndroidDialogPickerNativeComponent.js.flow │ │ │ │ │ ├── AndroidDialogPickerViewConfig.js.flow │ │ │ │ │ ├── AndroidDropdownPickerNativeComponent.js.flow │ │ │ │ │ ├── Picker.js.flow │ │ │ │ │ ├── PickerIOS.ios.js.flow │ │ │ │ │ ├── RCTPickerNativeComponent.js.flow │ │ │ │ │ ├── RCTPickerViewConfig.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── Picker-test.js.flow │ │ │ │ ├── Pressable │ │ │ │ │ ├── Pressable.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Pressable-test.js.flow │ │ │ │ │ └── useAndroidRippleForView.js.flow │ │ │ │ ├── ProgressBarAndroid │ │ │ │ │ ├── ProgressBarAndroidNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ProgressBarAndroid-test.js.flow │ │ │ │ ├── ProgressViewIOS │ │ │ │ │ ├── ProgressViewIOS.ios.js.flow │ │ │ │ │ ├── RCTProgressViewNativeComponent.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── ProgressViewIOS-test.js.flow │ │ │ │ ├── RefreshControl │ │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.js.flow │ │ │ │ │ ├── PullToRefreshViewNativeComponent.js.flow │ │ │ │ │ ├── RefreshControl.js.flow │ │ │ │ │ └── __mocks__ │ │ │ │ │ │ └── RefreshControlMock.js.flow │ │ │ │ ├── SafeAreaView │ │ │ │ │ ├── RCTSafeAreaViewNativeComponent.js.flow │ │ │ │ │ ├── SafeAreaView.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ └── SafeAreaView-test.js.flow │ │ │ │ ├── ScrollResponder.js.flow │ │ │ │ ├── ScrollView │ │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.js.flow │ │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollContentViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollView.js.flow │ │ │ │ │ ├── ScrollViewCommands.js.flow │ │ │ │ │ ├── ScrollViewContext.js.flow │ │ │ │ │ ├── ScrollViewNativeComponent.js.flow │ │ │ │ │ ├── ScrollViewNativeComponentType.js.flow │ │ │ │ │ ├── ScrollViewStickyHeader.js.flow │ │ │ │ │ ├── ScrollViewViewConfig.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── ScrollView-test.js.flow │ │ │ │ │ └── processDecelerationRate.js.flow │ │ │ │ ├── SegmentedControlIOS │ │ │ │ │ ├── RCTSegmentedControlNativeComponent.js.flow │ │ │ │ │ └── SegmentedControlIOS.ios.js.flow │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider.js.flow │ │ │ │ │ └── SliderNativeComponent.js.flow │ │ │ │ ├── Sound │ │ │ │ │ ├── NativeSoundManager.js.flow │ │ │ │ │ └── SoundManager.js.flow │ │ │ │ ├── StaticContainer.react.js.flow │ │ │ │ ├── StaticRenderer.js.flow │ │ │ │ ├── StatusBar │ │ │ │ │ ├── NativeStatusBarManagerAndroid.js.flow │ │ │ │ │ ├── NativeStatusBarManagerIOS.js.flow │ │ │ │ │ ├── StatusBar.js.flow │ │ │ │ │ └── StatusBarIOS.js.flow │ │ │ │ ├── Switch │ │ │ │ │ ├── AndroidSwitchNativeComponent.js.flow │ │ │ │ │ ├── Switch.js.flow │ │ │ │ │ └── SwitchNativeComponent.js.flow │ │ │ │ ├── TextInput │ │ │ │ │ ├── AndroidTextInputNativeComponent.js.flow │ │ │ │ │ ├── AndroidTextInputViewConfig.js.flow │ │ │ │ │ ├── InputAccessoryView.js.flow │ │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.js.flow │ │ │ │ │ ├── RCTMultilineTextInputNativeComponent.js.flow │ │ │ │ │ ├── RCTSingelineTextInputNativeComponent.js.flow │ │ │ │ │ ├── RCTSinglelineTextInputViewConfig.js.flow │ │ │ │ │ ├── TextInput.js.flow │ │ │ │ │ ├── TextInputNativeCommands.js.flow │ │ │ │ │ ├── TextInputState.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── InputAccessoryView-test.js.flow │ │ │ │ │ │ └── TextInput-test.js.flow │ │ │ │ ├── ToastAndroid │ │ │ │ │ └── NativeToastAndroid.js.flow │ │ │ │ ├── Touchable │ │ │ │ │ ├── PooledClass.js.flow │ │ │ │ │ ├── Touchable.js.flow │ │ │ │ │ ├── TouchableBounce.js.flow │ │ │ │ │ ├── TouchableHighlight.js.flow │ │ │ │ │ ├── TouchableNativeFeedback.js.flow │ │ │ │ │ ├── TouchableOpacity.js.flow │ │ │ │ │ ├── TouchableWithoutFeedback.js.flow │ │ │ │ │ └── ensurePositiveDelayProps.js.flow │ │ │ │ ├── UnimplementedViews │ │ │ │ │ ├── UnimplementedNativeViewNativeComponent.js.flow │ │ │ │ │ └── UnimplementedView.js.flow │ │ │ │ └── View │ │ │ │ │ ├── ReactNativeStyleAttributes.js.flow │ │ │ │ │ ├── ReactNativeViewAttributes.js.flow │ │ │ │ │ ├── ReactNativeViewViewConfig.js.flow │ │ │ │ │ ├── ReactNativeViewViewConfigAndroid.js.flow │ │ │ │ │ ├── View.js.flow │ │ │ │ │ ├── ViewAccessibility.js.flow │ │ │ │ │ ├── ViewNativeComponent.js.flow │ │ │ │ │ └── ViewPropTypes.js.flow │ │ │ ├── Core │ │ │ │ ├── Devtools │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── parseHermesStack-test.js.flow │ │ │ │ │ ├── getDevServer.js.flow │ │ │ │ │ ├── openFileInEditor.js.flow │ │ │ │ │ ├── openURLInBrowser.js.flow │ │ │ │ │ ├── parseErrorStack.js.flow │ │ │ │ │ ├── parseHermesStack.js.flow │ │ │ │ │ └── symbolicateStackTrace.js.flow │ │ │ │ ├── ExceptionsManager.js.flow │ │ │ │ ├── InitializeCore.js.flow │ │ │ │ ├── NativeExceptionsManager.js.flow │ │ │ │ ├── ReactFiberErrorDialog.js.flow │ │ │ │ ├── ReactNativeVersion.js.flow │ │ │ │ ├── ReactNativeVersionCheck.js.flow │ │ │ │ ├── SegmentFetcher │ │ │ │ │ └── NativeSegmentFetcher.js.flow │ │ │ │ ├── Timers │ │ │ │ │ ├── JSTimers.js.flow │ │ │ │ │ └── NativeTiming.js.flow │ │ │ │ ├── checkNativeVersion.js.flow │ │ │ │ ├── polyfillPromise.js.flow │ │ │ │ ├── setUpAlert.js.flow │ │ │ │ ├── setUpBatchedBridge.js.flow │ │ │ │ ├── setUpDeveloperTools.js.flow │ │ │ │ ├── setUpErrorHandling.js.flow │ │ │ │ ├── setUpGlobals.js.flow │ │ │ │ ├── setUpNavigator.js.flow │ │ │ │ ├── setUpPerformance.js.flow │ │ │ │ ├── setUpReactDevTools.js.flow │ │ │ │ ├── setUpReactRefresh.js.flow │ │ │ │ ├── setUpRegeneratorRuntime.js.flow │ │ │ │ ├── setUpSegmentFetcher.js.flow │ │ │ │ ├── setUpSystrace.js.flow │ │ │ │ ├── setUpTimers.js.flow │ │ │ │ └── setUpXHR.js.flow │ │ │ ├── DeprecatedPropTypes │ │ │ │ ├── DeprecatedEdgeInsetsPropType.js.flow │ │ │ │ ├── DeprecatedImagePropType.js.flow │ │ │ │ ├── DeprecatedImageStylePropTypes.js.flow │ │ │ │ ├── DeprecatedLayoutPropTypes.js.flow │ │ │ │ ├── DeprecatedPointPropType.js.flow │ │ │ │ ├── DeprecatedShadowPropTypesIOS.js.flow │ │ │ │ ├── DeprecatedStyleSheetPropType.js.flow │ │ │ │ ├── DeprecatedTextInputPropTypes.js.flow │ │ │ │ ├── DeprecatedTextPropTypes.js.flow │ │ │ │ ├── DeprecatedTextStylePropTypes.js.flow │ │ │ │ ├── DeprecatedTransformPropTypes.js.flow │ │ │ │ ├── DeprecatedViewAccessibility.js.flow │ │ │ │ ├── DeprecatedViewPropTypes.js.flow │ │ │ │ ├── DeprecatedViewStylePropTypes.js.flow │ │ │ │ └── deprecatedCreateStrictShapeTypeChecker.js.flow │ │ │ ├── EventEmitter │ │ │ │ ├── NativeEventEmitter.js.flow │ │ │ │ ├── RCTDeviceEventEmitter.js.flow │ │ │ │ ├── RCTEventEmitter.js.flow │ │ │ │ ├── RCTNativeAppEventEmitter.js.flow │ │ │ │ └── __mocks__ │ │ │ │ │ └── NativeEventEmitter.js.flow │ │ │ ├── HeapCapture │ │ │ │ ├── HeapCapture.js.flow │ │ │ │ └── NativeJSCHeapCapture.js.flow │ │ │ ├── Image │ │ │ │ ├── AssetRegistry.js.flow │ │ │ │ ├── AssetSourceResolver.js.flow │ │ │ │ ├── Image.ios.js.flow │ │ │ │ ├── ImageAnalyticsTagContext.js.flow │ │ │ │ ├── ImageBackground.js.flow │ │ │ │ ├── ImagePickerIOS.js.flow │ │ │ │ ├── ImageProps.js.flow │ │ │ │ ├── ImageResizeMode.js.flow │ │ │ │ ├── ImageSource.js.flow │ │ │ │ ├── ImageViewNativeComponent.js.flow │ │ │ │ ├── ImageViewViewConfig.js.flow │ │ │ │ ├── NativeImageEditor.js.flow │ │ │ │ ├── NativeImageLoaderAndroid.js.flow │ │ │ │ ├── NativeImageLoaderIOS.js.flow │ │ │ │ ├── NativeImagePickerIOS.js.flow │ │ │ │ ├── NativeImageStoreAndroid.js.flow │ │ │ │ ├── NativeImageStoreIOS.js.flow │ │ │ │ ├── RelativeImageStub.js.flow │ │ │ │ ├── TextInlineImageNativeComponent.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── Image-test.js.flow │ │ │ │ ├── nativeImageSource.js.flow │ │ │ │ └── resolveAssetSource.js.flow │ │ │ ├── Inspector │ │ │ │ ├── BorderBox.js.flow │ │ │ │ ├── BoxInspector.js.flow │ │ │ │ ├── ElementBox.js.flow │ │ │ │ ├── ElementProperties.js.flow │ │ │ │ ├── Inspector.js.flow │ │ │ │ ├── InspectorOverlay.js.flow │ │ │ │ ├── InspectorPanel.js.flow │ │ │ │ ├── NetworkOverlay.js.flow │ │ │ │ ├── PerformanceOverlay.js.flow │ │ │ │ ├── StyleInspector.js.flow │ │ │ │ └── resolveBoxStyle.js.flow │ │ │ ├── Interaction │ │ │ │ ├── Batchinator.js.flow │ │ │ │ ├── BridgeSpyStallHandler.js.flow │ │ │ │ ├── FrameRateLogger.js.flow │ │ │ │ ├── InteractionManager.js.flow │ │ │ │ ├── InteractionMixin.js.flow │ │ │ │ ├── InteractionStallDebugger.js.flow │ │ │ │ ├── JSEventLoopWatchdog.js.flow │ │ │ │ ├── NativeFrameRateLogger.js.flow │ │ │ │ ├── PanResponder.js.flow │ │ │ │ └── TaskQueue.js.flow │ │ │ ├── JSInspector │ │ │ │ ├── InspectorAgent.js.flow │ │ │ │ ├── JSInspector.js.flow │ │ │ │ └── NetworkAgent.js.flow │ │ │ ├── LayoutAnimation │ │ │ │ └── LayoutAnimation.js.flow │ │ │ ├── Linking │ │ │ │ ├── Linking.js.flow │ │ │ │ ├── NativeIntentAndroid.js.flow │ │ │ │ └── NativeLinkingManager.js.flow │ │ │ ├── Lists │ │ │ │ ├── FillRateHelper.js.flow │ │ │ │ ├── FlatList.js.flow │ │ │ │ ├── SectionList.js.flow │ │ │ │ ├── ViewabilityHelper.js.flow │ │ │ │ ├── VirtualizeUtils.js.flow │ │ │ │ ├── VirtualizedList.js.flow │ │ │ │ ├── VirtualizedListContext.js.flow │ │ │ │ ├── VirtualizedSectionList.js.flow │ │ │ │ └── __flowtests__ │ │ │ │ │ ├── FlatList-flowtest.js.flow │ │ │ │ │ └── SectionList-flowtest.js.flow │ │ │ ├── LogBox │ │ │ │ ├── Data │ │ │ │ │ ├── LogBoxData.js.flow │ │ │ │ │ ├── LogBoxLog.js.flow │ │ │ │ │ ├── LogBoxSymbolication.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── LogBoxData-test.js.flow │ │ │ │ │ │ ├── LogBoxLog-test.js.flow │ │ │ │ │ │ ├── LogBoxSymbolication-test.js.flow │ │ │ │ │ │ └── parseLogBoxLog-test.js.flow │ │ │ │ │ └── parseLogBoxLog.js.flow │ │ │ │ ├── LogBox.js.flow │ │ │ │ ├── LogBoxInspectorContainer.js.flow │ │ │ │ ├── LogBoxNotificationContainer.js.flow │ │ │ │ ├── UI │ │ │ │ │ ├── AnsiHighlight.js.flow │ │ │ │ │ ├── LogBoxButton.js.flow │ │ │ │ │ ├── LogBoxInspector.js.flow │ │ │ │ │ ├── LogBoxInspectorCodeFrame.js.flow │ │ │ │ │ ├── LogBoxInspectorFooter.js.flow │ │ │ │ │ ├── LogBoxInspectorHeader.js.flow │ │ │ │ │ ├── LogBoxInspectorMessageHeader.js.flow │ │ │ │ │ ├── LogBoxInspectorReactFrames.js.flow │ │ │ │ │ ├── LogBoxInspectorSection.js.flow │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus.js.flow │ │ │ │ │ ├── LogBoxInspectorStackFrame.js.flow │ │ │ │ │ ├── LogBoxInspectorStackFrames.js.flow │ │ │ │ │ ├── LogBoxMessage.js.flow │ │ │ │ │ ├── LogBoxNotification.js.flow │ │ │ │ │ ├── LogBoxStyle.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── LogBoxButton-test.js.flow │ │ │ │ │ │ ├── LogBoxInspector-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorCodeFrame-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorFooter-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorHeader-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorMesageHeader-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorReactFrames-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorSection-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorSourceMapStatus-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorStackFrame-test.js.flow │ │ │ │ │ │ ├── LogBoxInspectorStackFrames-test.js.flow │ │ │ │ │ │ ├── LogBoxMessage-test.js.flow │ │ │ │ │ │ └── LogBoxNotification-test.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ ├── LogBox-test.js.flow │ │ │ │ │ ├── LogBoxInspectorContainer-test.js.flow │ │ │ │ │ └── LogBoxNotificationContainer-test.js.flow │ │ │ ├── Modal │ │ │ │ ├── Modal.js.flow │ │ │ │ ├── NativeModalManager.js.flow │ │ │ │ ├── RCTModalHostViewNativeComponent.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ └── Modal-test.js.flow │ │ │ ├── NativeModules │ │ │ │ └── specs │ │ │ │ │ ├── NativeAnimationsDebugModule.js.flow │ │ │ │ │ ├── NativeDevMenu.js.flow │ │ │ │ │ ├── NativeDevSettings.js.flow │ │ │ │ │ ├── NativeDeviceEventManager.js.flow │ │ │ │ │ ├── NativeDialogManagerAndroid.js.flow │ │ │ │ │ ├── NativeLogBox.js.flow │ │ │ │ │ ├── NativeRedBox.js.flow │ │ │ │ │ └── NativeSourceCode.js.flow │ │ │ ├── Network │ │ │ │ ├── FormData.js.flow │ │ │ │ ├── NativeNetworkingAndroid.js.flow │ │ │ │ ├── NativeNetworkingIOS.js.flow │ │ │ │ ├── RCTNetworking.ios.js.flow │ │ │ │ ├── XMLHttpRequest.js.flow │ │ │ │ ├── convertRequestBody.js.flow │ │ │ │ └── fetch.js.flow │ │ │ ├── NewAppScreen │ │ │ │ ├── components │ │ │ │ │ ├── Colors.js.flow │ │ │ │ │ ├── DebugInstructions.js.flow │ │ │ │ │ ├── Header.js.flow │ │ │ │ │ ├── HermesBadge.js.flow │ │ │ │ │ ├── LearnMoreLinks.js.flow │ │ │ │ │ └── ReloadInstructions.js.flow │ │ │ │ └── index.js.flow │ │ │ ├── Performance │ │ │ │ ├── NativeJSCSamplingProfiler.js.flow │ │ │ │ ├── PureComponentDebug.js.flow │ │ │ │ ├── QuickPerformanceLogger.js.flow │ │ │ │ ├── SamplingProfiler.js.flow │ │ │ │ └── Systrace.js.flow │ │ │ ├── PermissionsAndroid │ │ │ │ ├── NativePermissionsAndroid.js.flow │ │ │ │ └── PermissionsAndroid.js.flow │ │ │ ├── Pressability │ │ │ │ ├── HoverState.js.flow │ │ │ │ ├── Pressability.js.flow │ │ │ │ ├── PressabilityDebug.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ └── Pressability-test.js.flow │ │ │ │ └── usePressability.js.flow │ │ │ ├── Promise.js.flow │ │ │ ├── PushNotificationIOS │ │ │ │ ├── NativePushNotificationManagerIOS.js.flow │ │ │ │ └── PushNotificationIOS.js.flow │ │ │ ├── ReactNative │ │ │ │ ├── AppContainer.js.flow │ │ │ │ ├── AppRegistry.js.flow │ │ │ │ ├── DummyUIManager.js.flow │ │ │ │ ├── FabricUIManager.js.flow │ │ │ │ ├── HeadlessJsTaskError.js.flow │ │ │ │ ├── I18nManager.js.flow │ │ │ │ ├── NativeHeadlessJsTaskSupport.js.flow │ │ │ │ ├── NativeI18nManager.js.flow │ │ │ │ ├── NativeUIManager.js.flow │ │ │ │ ├── PaperUIManager.js.flow │ │ │ │ ├── ReactFabricInternals.js.flow │ │ │ │ ├── RootTag.js.flow │ │ │ │ ├── UIManager.js.flow │ │ │ │ ├── UIManagerProperties.js.flow │ │ │ │ ├── getNativeComponentAttributes.js.flow │ │ │ │ ├── queryLayoutByID.js.flow │ │ │ │ ├── renderApplication.js.flow │ │ │ │ └── requireNativeComponent.js.flow │ │ │ ├── ReactPrivate │ │ │ │ ├── ReactNativePrivateInitializeCore.js.flow │ │ │ │ └── ReactNativePrivateInterface.js.flow │ │ │ ├── Reliability │ │ │ │ └── UserFlow.js.flow │ │ │ ├── Renderer │ │ │ │ └── shims │ │ │ │ │ ├── ReactFabric.js.flow │ │ │ │ │ ├── ReactFeatureFlags.js.flow │ │ │ │ │ ├── ReactNative.js.flow │ │ │ │ │ ├── ReactNativeTypes.js.flow │ │ │ │ │ ├── ReactNativeViewConfigRegistry.js.flow │ │ │ │ │ └── createReactNativeComponentClass.js.flow │ │ │ ├── Settings │ │ │ │ ├── NativeSettingsManager.js.flow │ │ │ │ └── Settings.ios.js.flow │ │ │ ├── Share │ │ │ │ ├── NativeShareModule.js.flow │ │ │ │ └── Share.js.flow │ │ │ ├── Storage │ │ │ │ ├── AsyncStorage.js.flow │ │ │ │ ├── NativeAsyncLocalStorage.js.flow │ │ │ │ └── NativeAsyncSQLiteDBStorage.js.flow │ │ │ ├── StyleSheet │ │ │ │ ├── EdgeInsetsPropType.js.flow │ │ │ │ ├── PlatformColorValueTypes.ios.js.flow │ │ │ │ ├── PlatformColorValueTypesIOS.ios.js.flow │ │ │ │ ├── PlatformColorValueTypesIOS.js.flow │ │ │ │ ├── PointPropType.js.flow │ │ │ │ ├── Rect.js.flow │ │ │ │ ├── StyleSheet.js.flow │ │ │ │ ├── StyleSheetTypes.js.flow │ │ │ │ ├── StyleSheetValidation.js.flow │ │ │ │ ├── __flowtests__ │ │ │ │ │ └── StyleSheet-flowtest.js.flow │ │ │ │ ├── flattenStyle.js.flow │ │ │ │ ├── normalizeColor.js.flow │ │ │ │ ├── processColor.js.flow │ │ │ │ ├── processColorArray.js.flow │ │ │ │ ├── processTransform.js.flow │ │ │ │ ├── setNormalizedColorAlpha.js.flow │ │ │ │ └── splitLayoutProps.js.flow │ │ │ ├── Text │ │ │ │ ├── Text.js.flow │ │ │ │ ├── TextAncestor.js.flow │ │ │ │ ├── TextInjection.js.flow │ │ │ │ ├── TextNativeComponent.js.flow │ │ │ │ └── TextProps.js.flow │ │ │ ├── TurboModule │ │ │ │ ├── RCTExport.js.flow │ │ │ │ ├── TurboModuleRegistry.js.flow │ │ │ │ └── samples │ │ │ │ │ └── NativeSampleTurboModule.js.flow │ │ │ ├── Types │ │ │ │ ├── CodegenTypes.js.flow │ │ │ │ └── CoreEventTypes.js.flow │ │ │ ├── UTFSequence.js.flow │ │ │ ├── Utilities │ │ │ │ ├── Appearance.js.flow │ │ │ │ ├── BackHandler.ios.js.flow │ │ │ │ ├── DebugEnvironment.js.flow │ │ │ │ ├── DevSettings.js.flow │ │ │ │ ├── DeviceInfo.js.flow │ │ │ │ ├── Dimensions.js.flow │ │ │ │ ├── GlobalPerformanceLogger.js.flow │ │ │ │ ├── HMRClient.js.flow │ │ │ │ ├── HMRClientProdShim.js.flow │ │ │ │ ├── JSDevSupportModule.js.flow │ │ │ │ ├── LoadingView.ios.js.flow │ │ │ │ ├── NativeAppearance.js.flow │ │ │ │ ├── NativeDevLoadingView.js.flow │ │ │ │ ├── NativeDevSplitBundleLoader.js.flow │ │ │ │ ├── NativeDeviceInfo.js.flow │ │ │ │ ├── NativeJSDevSupport.js.flow │ │ │ │ ├── NativePlatformConstantsAndroid.js.flow │ │ │ │ ├── NativePlatformConstantsIOS.js.flow │ │ │ │ ├── PerformanceLoggerContext.js.flow │ │ │ │ ├── PixelRatio.js.flow │ │ │ │ ├── Platform.ios.js.flow │ │ │ │ ├── PolyfillFunctions.js.flow │ │ │ │ ├── RCTLog.js.flow │ │ │ │ ├── ReactNativeTestTools.js.flow │ │ │ │ ├── SceneTracker.js.flow │ │ │ │ ├── __tests__ │ │ │ │ │ ├── PerformanceLogger-test.js.flow │ │ │ │ │ ├── setAndForwardRef-test.js.flow │ │ │ │ │ └── stringifySafe-test.js.flow │ │ │ │ ├── binaryToBase64.js.flow │ │ │ │ ├── clamp.js.flow │ │ │ │ ├── codegenNativeCommands.js.flow │ │ │ │ ├── codegenNativeComponent.js.flow │ │ │ │ ├── createPerformanceLogger.js.flow │ │ │ │ ├── deepFreezeAndThrowOnMutationInDev.js.flow │ │ │ │ ├── defineLazyObjectProperty.js.flow │ │ │ │ ├── deprecatedPropType.js.flow │ │ │ │ ├── differ │ │ │ │ │ ├── deepDiffer.js.flow │ │ │ │ │ ├── insetsDiffer.js.flow │ │ │ │ │ └── pointsDiffer.js.flow │ │ │ │ ├── dismissKeyboard.js.flow │ │ │ │ ├── groupByEveryN.js.flow │ │ │ │ ├── infoLog.js.flow │ │ │ │ ├── logError.js.flow │ │ │ │ ├── mapWithSeparator.js.flow │ │ │ │ ├── mergeIntoFast.js.flow │ │ │ │ ├── registerGeneratedViewConfig.js.flow │ │ │ │ ├── setAndForwardRef.js.flow │ │ │ │ ├── stringifySafe.js.flow │ │ │ │ ├── truncate.js.flow │ │ │ │ ├── useColorScheme.js.flow │ │ │ │ ├── useWindowDimensions.js.flow │ │ │ │ ├── verifyComponentAttributeEquivalence.js.flow │ │ │ │ └── warnOnce.js.flow │ │ │ ├── Vibration │ │ │ │ ├── NativeVibration.js.flow │ │ │ │ └── Vibration.js.flow │ │ │ ├── WebSocket │ │ │ │ ├── NativeWebSocketModule.js.flow │ │ │ │ └── WebSocket.js.flow │ │ │ ├── YellowBox │ │ │ │ ├── YellowBoxDeprecated.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ └── YellowBoxDeprecated-test.js.flow │ │ │ ├── __flowtests__ │ │ │ │ └── ReactNativeTypes-flowtest.js.flow │ │ │ ├── promiseRejectionIsError.js.flow │ │ │ ├── promiseRejectionTrackingOptions.js.flow │ │ │ └── vendor │ │ │ │ ├── core │ │ │ │ └── ErrorUtils.js.flow │ │ │ │ └── emitter │ │ │ │ ├── EventEmitter.js.flow │ │ │ │ ├── _EmitterSubscription.js.flow │ │ │ │ ├── _EventEmitter.js.flow │ │ │ │ ├── _EventSubscription.js.flow │ │ │ │ └── _EventSubscriptionVendor.js.flow │ │ ├── ReactAndroid │ │ │ └── src │ │ │ │ └── androidTest │ │ │ │ └── js │ │ │ │ ├── NativeIdTestModule.js.flow │ │ │ │ ├── ScrollViewTestModule.js.flow │ │ │ │ └── UIManagerTestModule.js.flow │ │ ├── ReactCommon │ │ │ └── hermes │ │ │ │ └── inspector │ │ │ │ └── tools │ │ │ │ └── msggen │ │ │ │ └── src │ │ │ │ ├── Command.js.flow │ │ │ │ ├── Converters.js.flow │ │ │ │ ├── Event.js.flow │ │ │ │ ├── GeneratedHeader.js.flow │ │ │ │ ├── Graph.js.flow │ │ │ │ ├── HeaderWriter.js.flow │ │ │ │ ├── ImplementationWriter.js.flow │ │ │ │ ├── Property.js.flow │ │ │ │ ├── Type.js.flow │ │ │ │ └── index.js.flow │ │ ├── flow-typed │ │ │ └── npm │ │ │ │ ├── base64-js_v1.x.x.js.flow │ │ │ │ ├── pretty-format_v26.x.x.js.flow │ │ │ │ ├── promise_v8.x.x.js.flow │ │ │ │ ├── prop-types_v15.x.x.js.flow │ │ │ │ └── stacktrace-parser_v0.1.x.js.flow │ │ ├── flow │ │ │ ├── Position.js.flow │ │ │ ├── Promise.js.flow │ │ │ ├── Stringish.js.flow │ │ │ ├── console.js.flow │ │ │ └── use-subscription.js.flow │ │ ├── index.js.flow │ │ ├── interface.js.flow │ │ ├── jest │ │ │ ├── mockScrollView.js.flow │ │ │ ├── preprocessor.js.flow │ │ │ └── renderer.js.flow │ │ ├── metro.config.js.flow │ │ └── packages │ │ │ ├── assets │ │ │ ├── path-support.js.flow │ │ │ └── registry.js.flow │ │ │ ├── babel-plugin-codegen │ │ │ └── __test_fixtures__ │ │ │ │ ├── failures.js.flow │ │ │ │ └── fixtures.js.flow │ │ │ ├── normalize-color │ │ │ └── base.js.flow │ │ │ ├── polyfills │ │ │ └── error-guard.js.flow │ │ │ ├── react-native-codegen │ │ │ ├── e2e │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ArrayPropsNativeComponent.js.flow │ │ │ │ │ │ ├── BooleanPropNativeComponent.js.flow │ │ │ │ │ │ ├── ColorPropNativeComponent.js.flow │ │ │ │ │ │ ├── EdgeInsetsPropNativeComponent.js.flow │ │ │ │ │ │ ├── EnumPropNativeComponent.js.flow │ │ │ │ │ │ ├── EventNestedObjectPropsNativeComponent.js.flow │ │ │ │ │ │ ├── EventPropsNativeComponent.js.flow │ │ │ │ │ │ ├── FloatPropsNativeComponent.js.flow │ │ │ │ │ │ ├── ImagePropNativeComponent.js.flow │ │ │ │ │ │ ├── IntegerPropNativeComponent.js.flow │ │ │ │ │ │ ├── InterfaceOnlyNativeComponent.js.flow │ │ │ │ │ │ ├── MultiNativePropNativeComponent.js.flow │ │ │ │ │ │ ├── NoPropsNoEventsNativeComponent.js.flow │ │ │ │ │ │ ├── ObjectPropsNativeComponent.js.flow │ │ │ │ │ │ ├── PointPropNativeComponent.js.flow │ │ │ │ │ │ └── StringPropNativeComponent.js.flow │ │ │ │ │ └── modules │ │ │ │ │ │ ├── NativeArrayTurboModule.js.flow │ │ │ │ │ │ ├── NativeBooleanTurboModule.js.flow │ │ │ │ │ │ ├── NativeCallbackTurboModule.js.flow │ │ │ │ │ │ ├── NativeNullableTurboModule.js.flow │ │ │ │ │ │ ├── NativeNumberTurboModule.js.flow │ │ │ │ │ │ ├── NativeObjectTurboModule.js.flow │ │ │ │ │ │ ├── NativeOptionalObjectTurboModule.js.flow │ │ │ │ │ │ ├── NativePromiseTurboModule.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModule.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModuleArrays.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModuleNullable.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModuleNullableAndOptional.js.flow │ │ │ │ │ │ ├── NativeSampleTurboModuleOptional.js.flow │ │ │ │ │ │ └── NativeStringTurboModule.js.flow │ │ │ │ └── __tests__ │ │ │ │ │ └── modules │ │ │ │ │ └── GenerateModuleObjCpp-test.js.flow │ │ │ ├── scripts │ │ │ │ └── build.js.flow │ │ │ └── src │ │ │ │ ├── CodegenSchema.js.flow │ │ │ │ ├── SchemaValidator.js.flow │ │ │ │ ├── __tests__ │ │ │ │ └── SchemaValidator-test.js.flow │ │ │ │ ├── cli │ │ │ │ ├── combine │ │ │ │ │ ├── combine-js-to-schema-cli.js.flow │ │ │ │ │ └── combine-js-to-schema.js.flow │ │ │ │ ├── generators │ │ │ │ │ └── generate-all.js.flow │ │ │ │ ├── parser │ │ │ │ │ ├── parser-cli.js.flow │ │ │ │ │ └── parser.js.flow │ │ │ │ └── verify_with_old_codegen.js.flow │ │ │ │ ├── generators │ │ │ │ ├── RNCodegen.js.flow │ │ │ │ ├── components │ │ │ │ │ ├── CppHelpers.js.flow │ │ │ │ │ ├── GenerateComponentDescriptorH.js.flow │ │ │ │ │ ├── GenerateComponentHObjCpp.js.flow │ │ │ │ │ ├── GenerateEventEmitterCpp.js.flow │ │ │ │ │ ├── GenerateEventEmitterH.js.flow │ │ │ │ │ ├── GeneratePropsCpp.js.flow │ │ │ │ │ ├── GeneratePropsH.js.flow │ │ │ │ │ ├── GeneratePropsJavaDelegate.js.flow │ │ │ │ │ ├── GeneratePropsJavaInterface.js.flow │ │ │ │ │ ├── GenerateShadowNodeCpp.js.flow │ │ │ │ │ ├── GenerateShadowNodeH.js.flow │ │ │ │ │ ├── GenerateTests.js.flow │ │ │ │ │ ├── GenerateViewConfigJs.js.flow │ │ │ │ │ ├── JavaHelpers.js.flow │ │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── GenerateComponentDescriptorH-test.js.flow │ │ │ │ │ │ ├── GenerateComponentHObjCpp-test.js.flow │ │ │ │ │ │ ├── GenerateEventEmitterCpp-test.js.flow │ │ │ │ │ │ ├── GenerateEventEmitterH-test.js.flow │ │ │ │ │ │ ├── GeneratePropsCpp-test.js.flow │ │ │ │ │ │ ├── GeneratePropsH-test.js.flow │ │ │ │ │ │ ├── GeneratePropsJavaDelegate-test.js.flow │ │ │ │ │ │ ├── GeneratePropsJavaInterface-test.js.flow │ │ │ │ │ │ ├── GenerateShadowNodeCpp-test.js.flow │ │ │ │ │ │ ├── GenerateShadowNodeH-test.js.flow │ │ │ │ │ │ ├── GenerateTests-test.js.flow │ │ │ │ │ │ └── GenerateViewConfigJs-test.js.flow │ │ │ │ └── modules │ │ │ │ │ ├── GenerateModuleCpp.js.flow │ │ │ │ │ ├── GenerateModuleH.js.flow │ │ │ │ │ ├── GenerateModuleJavaSpec.js.flow │ │ │ │ │ ├── GenerateModuleJniCpp.js.flow │ │ │ │ │ ├── GenerateModuleJniH.js.flow │ │ │ │ │ ├── GenerateModuleObjCpp │ │ │ │ │ ├── StructCollector.js.flow │ │ │ │ │ ├── Utils.js.flow │ │ │ │ │ ├── header │ │ │ │ │ │ ├── serializeConstantsStruct.js.flow │ │ │ │ │ │ ├── serializeRegularStruct.js.flow │ │ │ │ │ │ └── serializeStruct.js.flow │ │ │ │ │ ├── index.js.flow │ │ │ │ │ ├── serializeMethod.js.flow │ │ │ │ │ └── source │ │ │ │ │ │ └── serializeModule.js.flow │ │ │ │ │ ├── Utils.js.flow │ │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ │ └── __tests__ │ │ │ │ │ ├── GenerateModuleCpp-test.js.flow │ │ │ │ │ ├── GenerateModuleH-test.js.flow │ │ │ │ │ ├── GenerateModuleHObjCpp-test.js.flow │ │ │ │ │ ├── GenerateModuleJavaSpec-test.js.flow │ │ │ │ │ ├── GenerateModuleJniCpp-test.js.flow │ │ │ │ │ ├── GenerateModuleJniH-test.js.flow │ │ │ │ │ └── GenerateModuleMm-test.js.flow │ │ │ │ └── parsers │ │ │ │ ├── flow │ │ │ │ ├── components │ │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ │ ├── failures.js.flow │ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── component-parser-test.js.flow │ │ │ │ │ ├── commands.js.flow │ │ │ │ │ ├── events.js.flow │ │ │ │ │ ├── extends.js.flow │ │ │ │ │ ├── index.js.flow │ │ │ │ │ ├── options.js.flow │ │ │ │ │ ├── props.js.flow │ │ │ │ │ └── schema.js.flow │ │ │ │ ├── errors.js.flow │ │ │ │ ├── index.js.flow │ │ │ │ ├── modules │ │ │ │ │ ├── __test_fixtures__ │ │ │ │ │ │ ├── failures.js.flow │ │ │ │ │ │ └── fixtures.js.flow │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── module-parser-e2e-test.js.flow │ │ │ │ │ │ └── module-parser-snapshot-test.js.flow │ │ │ │ │ ├── errors.js.flow │ │ │ │ │ ├── index.js.flow │ │ │ │ │ ├── schema.js.flow │ │ │ │ │ └── utils.js.flow │ │ │ │ └── utils.js.flow │ │ │ │ └── schema │ │ │ │ └── index.js.flow │ │ │ └── rn-tester │ │ │ ├── NativeModuleExample │ │ │ └── NativeScreenshotManager.js.flow │ │ │ ├── RCTTest │ │ │ └── RCTSnapshotNativeComponent.js.flow │ │ │ └── js │ │ │ ├── RNTesterApp.ios.js.flow │ │ │ ├── RNTesterAppShared.js.flow │ │ │ ├── components │ │ │ ├── ExamplePage.js.flow │ │ │ ├── ListExampleShared.js.flow │ │ │ ├── RNTesterBlock.js.flow │ │ │ ├── RNTesterBookmarkButton.js.flow │ │ │ ├── RNTesterButton.js.flow │ │ │ ├── RNTesterComponentTitle.js.flow │ │ │ ├── RNTesterDocumentationURL.js.flow │ │ │ ├── RNTesterEmptyBookmarksState.js.flow │ │ │ ├── RNTesterExampleFilter.js.flow │ │ │ ├── RNTesterExampleList.js.flow │ │ │ ├── RNTesterHeader.js.flow │ │ │ ├── RNTesterListFilters.js.flow │ │ │ ├── RNTesterNavbar.js.flow │ │ │ ├── RNTesterPage.js.flow │ │ │ ├── RNTesterSettingSwitchRow.js.flow │ │ │ ├── RNTesterTheme.js.flow │ │ │ ├── RNTesterTitle.js.flow │ │ │ ├── TextInlineView.js.flow │ │ │ ├── TextLegend.js.flow │ │ │ ├── UseCase.js.flow │ │ │ └── createExamplePage.js.flow │ │ │ ├── examples │ │ │ ├── Accessibility │ │ │ │ └── AccessibilityIOSExample.js.flow │ │ │ ├── ActionSheetIOS │ │ │ │ └── ActionSheetIOSExample.js.flow │ │ │ ├── ActivityIndicator │ │ │ │ └── ActivityIndicatorExample.js.flow │ │ │ ├── Alert │ │ │ │ └── AlertIOSExample.js.flow │ │ │ ├── Animated │ │ │ │ ├── AnimatedExample.js.flow │ │ │ │ └── AnimatedGratuitousApp │ │ │ │ │ ├── AnExApp.js.flow │ │ │ │ │ ├── AnExBobble.js.flow │ │ │ │ │ ├── AnExChained.js.flow │ │ │ │ │ ├── AnExScroll.js.flow │ │ │ │ │ ├── AnExSet.js.flow │ │ │ │ │ └── AnExTilt.js.flow │ │ │ ├── AppState │ │ │ │ └── AppStateExample.js.flow │ │ │ ├── Appearance │ │ │ │ └── AppearanceExample.js.flow │ │ │ ├── Button │ │ │ │ └── ButtonExample.js.flow │ │ │ ├── Crash │ │ │ │ └── CrashExample.js.flow │ │ │ ├── DevSettings │ │ │ │ └── DevSettingsExample.js.flow │ │ │ ├── Dimensions │ │ │ │ └── DimensionsExample.js.flow │ │ │ ├── FlatList │ │ │ │ └── FlatListExample.js.flow │ │ │ ├── Image │ │ │ │ ├── ImageCapInsetsExample.js.flow │ │ │ │ └── ImageExample.js.flow │ │ │ ├── InputAccessoryView │ │ │ │ └── InputAccessoryViewExample.js.flow │ │ │ ├── JSResponderHandlerExample │ │ │ │ └── JSResponderHandlerExample.js.flow │ │ │ ├── KeyboardAvoidingView │ │ │ │ └── KeyboardAvoidingViewExample.js.flow │ │ │ ├── Layout │ │ │ │ ├── LayoutAnimationExample.js.flow │ │ │ │ ├── LayoutEventsExample.js.flow │ │ │ │ └── LayoutExample.js.flow │ │ │ ├── Modal │ │ │ │ └── ModalExample.js.flow │ │ │ ├── MultiColumn │ │ │ │ └── MultiColumnExample.js.flow │ │ │ ├── NativeAnimation │ │ │ │ └── NativeAnimationsExample.js.flow │ │ │ ├── NewAppScreen │ │ │ │ └── NewAppScreenExample.js.flow │ │ │ ├── OrientationChange │ │ │ │ └── OrientationChangeExample.js.flow │ │ │ ├── PanResponder │ │ │ │ └── PanResponderExample.js.flow │ │ │ ├── PermissionsAndroid │ │ │ │ └── PermissionsExample.js.flow │ │ │ ├── PlatformColor │ │ │ │ └── PlatformColorExample.js.flow │ │ │ ├── PointerEvents │ │ │ │ └── PointerEventsExample.js.flow │ │ │ ├── Pressable │ │ │ │ └── PressableExample.js.flow │ │ │ ├── RCTRootView │ │ │ │ └── RCTRootViewIOSExample.js.flow │ │ │ ├── RTL │ │ │ │ └── RTLExample.js.flow │ │ │ ├── RootViewSizeFlexibilityExample │ │ │ │ └── RootViewSizeFlexibilityExampleApp.js.flow │ │ │ ├── SafeAreaView │ │ │ │ └── SafeAreaViewExample.js.flow │ │ │ ├── ScrollView │ │ │ │ ├── ScrollViewAnimatedExample.js.flow │ │ │ │ ├── ScrollViewExample.js.flow │ │ │ │ └── ScrollViewSimpleExample.js.flow │ │ │ ├── SectionList │ │ │ │ └── SectionListExample.js.flow │ │ │ ├── SetPropertiesExample │ │ │ │ └── SetPropertiesExampleApp.js.flow │ │ │ ├── Share │ │ │ │ └── ShareExample.js.flow │ │ │ ├── Snapshot │ │ │ │ ├── SnapshotExample.js.flow │ │ │ │ └── SnapshotViewIOS.ios.js.flow │ │ │ ├── StatusBar │ │ │ │ └── StatusBarExample.js.flow │ │ │ ├── Switch │ │ │ │ └── SwitchExample.js.flow │ │ │ ├── Text │ │ │ │ └── TextExample.ios.js.flow │ │ │ ├── TextInput │ │ │ │ ├── TextInputExample.ios.js.flow │ │ │ │ └── TextInputSharedExamples.js.flow │ │ │ ├── Timer │ │ │ │ └── TimerExample.js.flow │ │ │ ├── Touchable │ │ │ │ └── TouchableExample.js.flow │ │ │ ├── Transform │ │ │ │ └── TransformExample.js.flow │ │ │ ├── TransparentHitTest │ │ │ │ └── TransparentHitTestExample.js.flow │ │ │ ├── TurboModule │ │ │ │ ├── SampleTurboModuleExample.js.flow │ │ │ │ └── TurboModuleExample.js.flow │ │ │ ├── Vibration │ │ │ │ └── VibrationExample.js.flow │ │ │ ├── View │ │ │ │ └── ViewExample.js.flow │ │ │ ├── WebSocket │ │ │ │ ├── http_test_server.js.flow │ │ │ │ └── websocket_test_server.js.flow │ │ │ └── XHR │ │ │ │ ├── XHRExample.js.flow │ │ │ │ ├── XHRExampleAbortController.js.flow │ │ │ │ ├── XHRExampleBinaryUpload.js.flow │ │ │ │ ├── XHRExampleDownload.js.flow │ │ │ │ ├── XHRExampleFetch.js.flow │ │ │ │ └── XHRExampleOnTimeOut.js.flow │ │ │ ├── types │ │ │ └── RNTesterTypes.js.flow │ │ │ └── utils │ │ │ ├── RNTesterList.ios.js.flow │ │ │ ├── RNTesterReducer.js.flow │ │ │ ├── RNTesterStatePersister.js.flow │ │ │ ├── testerStateUtils.js.flow │ │ │ └── useAsyncStorageReducer.js.flow │ ├── offences.txt │ └── outputs │ │ ├── Libraries │ │ ├── ActionSheetIOS │ │ │ ├── ActionSheetIOS.d.ts │ │ │ └── NativeActionSheetManager.d.ts │ │ ├── Alert │ │ │ ├── Alert.d.ts │ │ │ ├── NativeAlertManager.d.ts │ │ │ └── RCTAlertManager.d.ts │ │ ├── Animated │ │ │ ├── Animated.d.ts │ │ │ ├── AnimatedEvent.d.ts │ │ │ ├── AnimatedImplementation.d.ts │ │ │ ├── AnimatedMock.d.ts │ │ │ ├── Easing.d.ts │ │ │ ├── NativeAnimatedHelper.d.ts │ │ │ ├── NativeAnimatedModule.d.ts │ │ │ ├── NativeAnimatedTurboModule.d.ts │ │ │ ├── SpringConfig.d.ts │ │ │ ├── animations │ │ │ │ ├── Animation.d.ts │ │ │ │ ├── DecayAnimation.d.ts │ │ │ │ ├── SpringAnimation.d.ts │ │ │ │ └── TimingAnimation.d.ts │ │ │ ├── bezier.d.ts │ │ │ ├── components │ │ │ │ ├── AnimatedFlatList.d.ts │ │ │ │ ├── AnimatedImage.d.ts │ │ │ │ ├── AnimatedScrollView.d.ts │ │ │ │ ├── AnimatedSectionList.d.ts │ │ │ │ ├── AnimatedText.d.ts │ │ │ │ └── AnimatedView.d.ts │ │ │ ├── createAnimatedComponent.d.ts │ │ │ └── nodes │ │ │ │ ├── AnimatedAddition.d.ts │ │ │ │ ├── AnimatedDiffClamp.d.ts │ │ │ │ ├── AnimatedDivision.d.ts │ │ │ │ ├── AnimatedInterpolation.d.ts │ │ │ │ ├── AnimatedModulo.d.ts │ │ │ │ ├── AnimatedMultiplication.d.ts │ │ │ │ ├── AnimatedNode.d.ts │ │ │ │ ├── AnimatedProps.d.ts │ │ │ │ ├── AnimatedStyle.d.ts │ │ │ │ ├── AnimatedSubtraction.d.ts │ │ │ │ ├── AnimatedTracking.d.ts │ │ │ │ ├── AnimatedTransform.d.ts │ │ │ │ ├── AnimatedValue.d.ts │ │ │ │ ├── AnimatedValueXY.d.ts │ │ │ │ └── AnimatedWithChildren.d.ts │ │ ├── AppState │ │ │ ├── AppState.d.ts │ │ │ └── NativeAppState.d.ts │ │ ├── BatchedBridge │ │ │ ├── BatchedBridge.d.ts │ │ │ ├── MessageQueue.d.ts │ │ │ └── NativeModules.d.ts │ │ ├── Blob │ │ │ ├── Blob.d.ts │ │ │ ├── BlobManager.d.ts │ │ │ ├── BlobRegistry.d.ts │ │ │ ├── BlobTypes.d.ts │ │ │ ├── File.d.ts │ │ │ ├── FileReader.d.ts │ │ │ ├── NativeBlobModule.d.ts │ │ │ └── NativeFileReaderModule.d.ts │ │ ├── BugReporting │ │ │ ├── BugReporting.d.ts │ │ │ ├── NativeBugReporting.d.ts │ │ │ ├── dumpReactTree.d.ts │ │ │ └── getReactData.d.ts │ │ ├── Components │ │ │ ├── AccessibilityInfo │ │ │ │ ├── AccessibilityInfo.d.ts │ │ │ │ ├── NativeAccessibilityInfo.d.ts │ │ │ │ └── NativeAccessibilityManager.d.ts │ │ │ ├── ActivityIndicator │ │ │ │ ├── ActivityIndicator.d.ts │ │ │ │ └── ActivityIndicatorViewNativeComponent.d.ts │ │ │ ├── Button.d.ts │ │ │ ├── Clipboard │ │ │ │ ├── Clipboard.d.ts │ │ │ │ └── NativeClipboard.d.ts │ │ │ ├── DatePicker │ │ │ │ ├── DatePickerIOS.d.ts │ │ │ │ └── RCTDatePickerNativeComponent.d.ts │ │ │ ├── DatePickerAndroid │ │ │ │ ├── DatePickerAndroid.d.ts │ │ │ │ ├── DatePickerAndroidTypes.d.ts │ │ │ │ └── NativeDatePickerAndroid.d.ts │ │ │ ├── DrawerAndroid │ │ │ │ └── AndroidDrawerLayoutNativeComponent.d.ts │ │ │ ├── Keyboard │ │ │ │ ├── Keyboard.d.ts │ │ │ │ ├── KeyboardAvoidingView.d.ts │ │ │ │ └── NativeKeyboardObserver.d.ts │ │ │ ├── MaskedView │ │ │ │ ├── MaskedViewIOS.d.ts │ │ │ │ └── RCTMaskedViewNativeComponent.d.ts │ │ │ ├── Picker │ │ │ │ ├── AndroidDialogPickerNativeComponent.d.ts │ │ │ │ ├── AndroidDialogPickerViewConfig.d.ts │ │ │ │ ├── AndroidDropdownPickerNativeComponent.d.ts │ │ │ │ ├── Picker.d.ts │ │ │ │ ├── PickerIOS.d.ts │ │ │ │ ├── RCTPickerNativeComponent.d.ts │ │ │ │ └── RCTPickerViewConfig.d.ts │ │ │ ├── Pressable │ │ │ │ ├── Pressable.d.ts │ │ │ │ └── useAndroidRippleForView.d.ts │ │ │ ├── ProgressBarAndroid │ │ │ │ └── ProgressBarAndroidNativeComponent.d.ts │ │ │ ├── ProgressViewIOS │ │ │ │ ├── ProgressViewIOS.d.ts │ │ │ │ └── RCTProgressViewNativeComponent.d.ts │ │ │ ├── RefreshControl │ │ │ │ ├── AndroidSwipeRefreshLayoutNativeComponent.d.ts │ │ │ │ ├── PullToRefreshViewNativeComponent.d.ts │ │ │ │ └── RefreshControl.d.ts │ │ │ ├── SafeAreaView │ │ │ │ ├── RCTSafeAreaViewNativeComponent.d.ts │ │ │ │ └── SafeAreaView.d.ts │ │ │ ├── ScrollResponder.d.ts │ │ │ ├── ScrollView │ │ │ │ ├── AndroidHorizontalScrollContentViewNativeComponent.d.ts │ │ │ │ ├── AndroidHorizontalScrollViewNativeComponent.d.ts │ │ │ │ ├── ScrollContentViewNativeComponent.d.ts │ │ │ │ ├── ScrollView.d.ts │ │ │ │ ├── ScrollViewCommands.d.ts │ │ │ │ ├── ScrollViewContext.d.ts │ │ │ │ ├── ScrollViewNativeComponent.d.ts │ │ │ │ ├── ScrollViewNativeComponentType.d.ts │ │ │ │ ├── ScrollViewStickyHeader.d.ts │ │ │ │ ├── ScrollViewViewConfig.d.ts │ │ │ │ └── processDecelerationRate.d.ts │ │ │ ├── SegmentedControlIOS │ │ │ │ ├── RCTSegmentedControlNativeComponent.d.ts │ │ │ │ └── SegmentedControlIOS.d.ts │ │ │ ├── Slider │ │ │ │ ├── Slider.d.ts │ │ │ │ └── SliderNativeComponent.d.ts │ │ │ ├── Sound │ │ │ │ ├── NativeSoundManager.d.ts │ │ │ │ └── SoundManager.d.ts │ │ │ ├── StaticRenderer.d.ts │ │ │ ├── StatusBar │ │ │ │ ├── NativeStatusBarManagerAndroid.d.ts │ │ │ │ ├── NativeStatusBarManagerIOS.d.ts │ │ │ │ ├── StatusBar.d.ts │ │ │ │ └── StatusBarIOS.d.ts │ │ │ ├── Switch │ │ │ │ ├── AndroidSwitchNativeComponent.d.ts │ │ │ │ ├── Switch.d.ts │ │ │ │ └── SwitchNativeComponent.d.ts │ │ │ ├── TextInput │ │ │ │ ├── AndroidTextInputNativeComponent.d.ts │ │ │ │ ├── AndroidTextInputViewConfig.d.ts │ │ │ │ ├── InputAccessoryView.d.ts │ │ │ │ ├── RCTInputAccessoryViewNativeComponent.d.ts │ │ │ │ ├── RCTMultilineTextInputNativeComponent.d.ts │ │ │ │ ├── RCTSingelineTextInputNativeComponent.d.ts │ │ │ │ ├── RCTSinglelineTextInputViewConfig.d.ts │ │ │ │ ├── TextInput.d.ts │ │ │ │ ├── TextInputNativeCommands.d.ts │ │ │ │ └── TextInputState.d.ts │ │ │ ├── ToastAndroid │ │ │ │ └── NativeToastAndroid.d.ts │ │ │ ├── Touchable │ │ │ │ ├── PooledClass.d.ts │ │ │ │ ├── Touchable.d.ts │ │ │ │ ├── TouchableBounce.d.ts │ │ │ │ ├── TouchableHighlight.d.ts │ │ │ │ ├── TouchableNativeFeedback.d.ts │ │ │ │ ├── TouchableOpacity.d.ts │ │ │ │ ├── TouchableWithoutFeedback.d.ts │ │ │ │ └── ensurePositiveDelayProps.d.ts │ │ │ ├── UnimplementedViews │ │ │ │ ├── UnimplementedNativeViewNativeComponent.d.ts │ │ │ │ └── UnimplementedView.d.ts │ │ │ └── View │ │ │ │ ├── ReactNativeStyleAttributes.d.ts │ │ │ │ ├── ReactNativeViewAttributes.d.ts │ │ │ │ ├── ReactNativeViewViewConfig.d.ts │ │ │ │ ├── ReactNativeViewViewConfigAndroid.d.ts │ │ │ │ ├── View.d.ts │ │ │ │ ├── ViewAccessibility.d.ts │ │ │ │ ├── ViewNativeComponent.d.ts │ │ │ │ └── ViewPropTypes.d.ts │ │ ├── Core │ │ │ ├── Devtools │ │ │ │ ├── getDevServer.d.ts │ │ │ │ ├── openFileInEditor.d.ts │ │ │ │ ├── openURLInBrowser.d.ts │ │ │ │ ├── parseErrorStack.d.ts │ │ │ │ ├── parseHermesStack.d.ts │ │ │ │ └── symbolicateStackTrace.d.ts │ │ │ ├── ExceptionsManager.d.ts │ │ │ ├── InitializeCore.d.ts │ │ │ ├── NativeExceptionsManager.d.ts │ │ │ ├── ReactFiberErrorDialog.d.ts │ │ │ ├── ReactNativeVersion.d.ts │ │ │ ├── ReactNativeVersionCheck.d.ts │ │ │ ├── SegmentFetcher │ │ │ │ └── NativeSegmentFetcher.d.ts │ │ │ ├── Timers │ │ │ │ ├── JSTimers.d.ts │ │ │ │ └── NativeTiming.d.ts │ │ │ ├── checkNativeVersion.d.ts │ │ │ ├── polyfillPromise.d.ts │ │ │ ├── setUpAlert.d.ts │ │ │ ├── setUpBatchedBridge.d.ts │ │ │ ├── setUpDeveloperTools.d.ts │ │ │ ├── setUpErrorHandling.d.ts │ │ │ ├── setUpGlobals.d.ts │ │ │ ├── setUpNavigator.d.ts │ │ │ ├── setUpPerformance.d.ts │ │ │ ├── setUpReactDevTools.d.ts │ │ │ ├── setUpReactRefresh.d.ts │ │ │ ├── setUpRegeneratorRuntime.d.ts │ │ │ ├── setUpSegmentFetcher.d.ts │ │ │ ├── setUpSystrace.d.ts │ │ │ ├── setUpTimers.d.ts │ │ │ └── setUpXHR.d.ts │ │ ├── DeprecatedPropTypes │ │ │ ├── DeprecatedEdgeInsetsPropType.d.ts │ │ │ ├── DeprecatedImagePropType.d.ts │ │ │ ├── DeprecatedImageStylePropTypes.d.ts │ │ │ ├── DeprecatedLayoutPropTypes.d.ts │ │ │ ├── DeprecatedPointPropType.d.ts │ │ │ ├── DeprecatedShadowPropTypesIOS.d.ts │ │ │ ├── DeprecatedStyleSheetPropType.d.ts │ │ │ ├── DeprecatedTextInputPropTypes.d.ts │ │ │ ├── DeprecatedTextPropTypes.d.ts │ │ │ ├── DeprecatedTextStylePropTypes.d.ts │ │ │ ├── DeprecatedTransformPropTypes.d.ts │ │ │ ├── DeprecatedViewAccessibility.d.ts │ │ │ ├── DeprecatedViewPropTypes.d.ts │ │ │ ├── DeprecatedViewStylePropTypes.d.ts │ │ │ └── deprecatedCreateStrictShapeTypeChecker.d.ts │ │ ├── EventEmitter │ │ │ ├── NativeEventEmitter.d.ts │ │ │ ├── RCTDeviceEventEmitter.d.ts │ │ │ ├── RCTEventEmitter.d.ts │ │ │ └── RCTNativeAppEventEmitter.d.ts │ │ ├── HeapCapture │ │ │ ├── HeapCapture.d.ts │ │ │ └── NativeJSCHeapCapture.d.ts │ │ ├── Image │ │ │ ├── AssetRegistry.d.ts │ │ │ ├── AssetSourceResolver.d.ts │ │ │ ├── Image.d.ts │ │ │ ├── ImageAnalyticsTagContext.d.ts │ │ │ ├── ImageBackground.d.ts │ │ │ ├── ImagePickerIOS.d.ts │ │ │ ├── ImageProps.d.ts │ │ │ ├── ImageResizeMode.d.ts │ │ │ ├── ImageSource.d.ts │ │ │ ├── ImageViewNativeComponent.d.ts │ │ │ ├── ImageViewViewConfig.d.ts │ │ │ ├── NativeImageEditor.d.ts │ │ │ ├── NativeImageLoaderAndroid.d.ts │ │ │ ├── NativeImageLoaderIOS.d.ts │ │ │ ├── NativeImagePickerIOS.d.ts │ │ │ ├── NativeImageStoreAndroid.d.ts │ │ │ ├── NativeImageStoreIOS.d.ts │ │ │ ├── RelativeImageStub.d.ts │ │ │ ├── TextInlineImageNativeComponent.d.ts │ │ │ ├── nativeImageSource.d.ts │ │ │ └── resolveAssetSource.d.ts │ │ ├── Interaction │ │ │ ├── Batchinator.d.ts │ │ │ ├── BridgeSpyStallHandler.d.ts │ │ │ ├── FrameRateLogger.d.ts │ │ │ ├── InteractionManager.d.ts │ │ │ ├── InteractionMixin.d.ts │ │ │ ├── InteractionStallDebugger.d.ts │ │ │ ├── JSEventLoopWatchdog.d.ts │ │ │ ├── NativeFrameRateLogger.d.ts │ │ │ ├── PanResponder.d.ts │ │ │ └── TaskQueue.d.ts │ │ ├── LayoutAnimation │ │ │ └── LayoutAnimation.d.ts │ │ ├── Linking │ │ │ ├── Linking.d.ts │ │ │ ├── NativeIntentAndroid.d.ts │ │ │ └── NativeLinkingManager.d.ts │ │ ├── Lists │ │ │ ├── FillRateHelper.d.ts │ │ │ ├── FlatList.d.ts │ │ │ ├── SectionList.d.ts │ │ │ ├── ViewabilityHelper.d.ts │ │ │ ├── VirtualizeUtils.d.ts │ │ │ ├── VirtualizedList.d.ts │ │ │ ├── VirtualizedListContext.d.ts │ │ │ └── VirtualizedSectionList.d.ts │ │ ├── LogBox │ │ │ ├── Data │ │ │ │ ├── LogBoxData.d.ts │ │ │ │ ├── LogBoxLog.d.ts │ │ │ │ ├── LogBoxSymbolication.d.ts │ │ │ │ └── parseLogBoxLog.d.ts │ │ │ ├── LogBox.d.ts │ │ │ ├── LogBoxInspectorContainer.d.ts │ │ │ ├── LogBoxNotificationContainer.d.ts │ │ │ └── UI │ │ │ │ ├── AnsiHighlight.d.ts │ │ │ │ ├── LogBoxButton.d.ts │ │ │ │ ├── LogBoxInspector.d.ts │ │ │ │ ├── LogBoxInspectorCodeFrame.d.ts │ │ │ │ ├── LogBoxInspectorFooter.d.ts │ │ │ │ ├── LogBoxInspectorHeader.d.ts │ │ │ │ ├── LogBoxInspectorMessageHeader.d.ts │ │ │ │ ├── LogBoxInspectorReactFrames.d.ts │ │ │ │ ├── LogBoxInspectorSection.d.ts │ │ │ │ ├── LogBoxInspectorSourceMapStatus.d.ts │ │ │ │ ├── LogBoxInspectorStackFrame.d.ts │ │ │ │ ├── LogBoxInspectorStackFrames.d.ts │ │ │ │ ├── LogBoxMessage.d.ts │ │ │ │ ├── LogBoxNotification.d.ts │ │ │ │ └── LogBoxStyle.d.ts │ │ ├── Modal │ │ │ ├── Modal.d.ts │ │ │ ├── NativeModalManager.d.ts │ │ │ └── RCTModalHostViewNativeComponent.d.ts │ │ ├── NativeModules │ │ │ └── specs │ │ │ │ ├── NativeAnimationsDebugModule.d.ts │ │ │ │ ├── NativeDevMenu.d.ts │ │ │ │ ├── NativeDevSettings.d.ts │ │ │ │ ├── NativeDeviceEventManager.d.ts │ │ │ │ ├── NativeDialogManagerAndroid.d.ts │ │ │ │ ├── NativeLogBox.d.ts │ │ │ │ ├── NativeRedBox.d.ts │ │ │ │ └── NativeSourceCode.d.ts │ │ ├── Network │ │ │ ├── FormData.d.ts │ │ │ ├── NativeNetworkingAndroid.d.ts │ │ │ ├── NativeNetworkingIOS.d.ts │ │ │ ├── RCTNetworking.d.ts │ │ │ ├── XMLHttpRequest.d.ts │ │ │ ├── convertRequestBody.d.ts │ │ │ └── fetch.d.ts │ │ ├── Performance │ │ │ ├── NativeJSCSamplingProfiler.d.ts │ │ │ ├── PureComponentDebug.d.ts │ │ │ ├── QuickPerformanceLogger.d.ts │ │ │ ├── SamplingProfiler.d.ts │ │ │ └── Systrace.d.ts │ │ ├── PermissionsAndroid │ │ │ ├── NativePermissionsAndroid.d.ts │ │ │ └── PermissionsAndroid.d.ts │ │ ├── Pressability │ │ │ ├── HoverState.d.ts │ │ │ ├── Pressability.d.ts │ │ │ ├── PressabilityDebug.d.ts │ │ │ └── usePressability.d.ts │ │ ├── PushNotificationIOS │ │ │ ├── NativePushNotificationManagerIOS.d.ts │ │ │ └── PushNotificationIOS.d.ts │ │ ├── ReactNative │ │ │ ├── AppContainer.d.ts │ │ │ ├── AppRegistry.d.ts │ │ │ ├── DummyUIManager.d.ts │ │ │ ├── FabricUIManager.d.ts │ │ │ ├── HeadlessJsTaskError.d.ts │ │ │ ├── I18nManager.d.ts │ │ │ ├── NativeHeadlessJsTaskSupport.d.ts │ │ │ ├── NativeI18nManager.d.ts │ │ │ ├── NativeUIManager.d.ts │ │ │ ├── PaperUIManager.d.ts │ │ │ ├── ReactFabricInternals.d.ts │ │ │ ├── RootTag.d.ts │ │ │ ├── UIManager.d.ts │ │ │ ├── UIManagerProperties.d.ts │ │ │ ├── getNativeComponentAttributes.d.ts │ │ │ ├── queryLayoutByID.d.ts │ │ │ ├── renderApplication.d.ts │ │ │ └── requireNativeComponent.d.ts │ │ ├── Reliability │ │ │ └── UserFlow.d.ts │ │ ├── Renderer │ │ │ └── shims │ │ │ │ ├── ReactFabric.d.ts │ │ │ │ ├── ReactFeatureFlags.d.ts │ │ │ │ ├── ReactNative.d.ts │ │ │ │ ├── ReactNativeTypes.d.ts │ │ │ │ ├── ReactNativeViewConfigRegistry.d.ts │ │ │ │ └── createReactNativeComponentClass.d.ts │ │ ├── Settings │ │ │ ├── NativeSettingsManager.d.ts │ │ │ └── Settings.d.ts │ │ ├── Share │ │ │ ├── NativeShareModule.d.ts │ │ │ └── Share.d.ts │ │ ├── Storage │ │ │ ├── AsyncStorage.d.ts │ │ │ ├── NativeAsyncLocalStorage.d.ts │ │ │ └── NativeAsyncSQLiteDBStorage.d.ts │ │ ├── StyleSheet │ │ │ ├── EdgeInsetsPropType.d.ts │ │ │ ├── PlatformColorValueTypes.d.ts │ │ │ ├── PlatformColorValueTypesIOS.d.ts │ │ │ ├── PointPropType.d.ts │ │ │ ├── Rect.d.ts │ │ │ ├── StyleSheet.d.ts │ │ │ ├── StyleSheetTypes.d.ts │ │ │ ├── StyleSheetValidation.d.ts │ │ │ ├── flattenStyle.d.ts │ │ │ ├── normalizeColor.d.ts │ │ │ ├── processColor.d.ts │ │ │ ├── processColorArray.d.ts │ │ │ ├── processTransform.d.ts │ │ │ ├── setNormalizedColorAlpha.d.ts │ │ │ └── splitLayoutProps.d.ts │ │ ├── Text │ │ │ ├── Text.d.ts │ │ │ ├── TextAncestor.d.ts │ │ │ ├── TextInjection.d.ts │ │ │ ├── TextNativeComponent.d.ts │ │ │ └── TextProps.d.ts │ │ ├── TurboModule │ │ │ ├── RCTExport.d.ts │ │ │ ├── TurboModuleRegistry.d.ts │ │ │ └── samples │ │ │ │ └── NativeSampleTurboModule.d.ts │ │ ├── Types │ │ │ ├── CodegenTypes.d.ts │ │ │ └── CoreEventTypes.d.ts │ │ ├── UTFSequence.d.ts │ │ ├── Utilities │ │ │ ├── Appearance.d.ts │ │ │ ├── BackHandler.d.ts │ │ │ ├── DebugEnvironment.d.ts │ │ │ ├── DevSettings.d.ts │ │ │ ├── DeviceInfo.d.ts │ │ │ ├── Dimensions.d.ts │ │ │ ├── GlobalPerformanceLogger.d.ts │ │ │ ├── HMRClient.d.ts │ │ │ ├── HMRClientProdShim.d.ts │ │ │ ├── JSDevSupportModule.d.ts │ │ │ ├── LoadingView.d.ts │ │ │ ├── NativeAppearance.d.ts │ │ │ ├── NativeDevLoadingView.d.ts │ │ │ ├── NativeDevSplitBundleLoader.d.ts │ │ │ ├── NativeDeviceInfo.d.ts │ │ │ ├── NativeJSDevSupport.d.ts │ │ │ ├── NativePlatformConstantsAndroid.d.ts │ │ │ ├── NativePlatformConstantsIOS.d.ts │ │ │ ├── PerformanceLoggerContext.d.ts │ │ │ ├── PixelRatio.d.ts │ │ │ ├── Platform.d.ts │ │ │ ├── PolyfillFunctions.d.ts │ │ │ ├── RCTLog.d.ts │ │ │ ├── ReactNativeTestTools.d.ts │ │ │ ├── SceneTracker.d.ts │ │ │ ├── binaryToBase64.d.ts │ │ │ ├── clamp.d.ts │ │ │ ├── codegenNativeCommands.d.ts │ │ │ ├── codegenNativeComponent.d.ts │ │ │ ├── createPerformanceLogger.d.ts │ │ │ ├── deepFreezeAndThrowOnMutationInDev.d.ts │ │ │ ├── defineLazyObjectProperty.d.ts │ │ │ ├── deprecatedPropType.d.ts │ │ │ ├── differ │ │ │ │ ├── deepDiffer.d.ts │ │ │ │ ├── insetsDiffer.d.ts │ │ │ │ └── pointsDiffer.d.ts │ │ │ ├── dismissKeyboard.d.ts │ │ │ ├── groupByEveryN.d.ts │ │ │ ├── infoLog.d.ts │ │ │ ├── logError.d.ts │ │ │ ├── mapWithSeparator.d.ts │ │ │ ├── mergeIntoFast.d.ts │ │ │ ├── registerGeneratedViewConfig.d.ts │ │ │ ├── setAndForwardRef.d.ts │ │ │ ├── stringifySafe.d.ts │ │ │ ├── truncate.d.ts │ │ │ ├── useColorScheme.d.ts │ │ │ ├── useWindowDimensions.d.ts │ │ │ ├── verifyComponentAttributeEquivalence.d.ts │ │ │ └── warnOnce.d.ts │ │ ├── Vibration │ │ │ ├── NativeVibration.d.ts │ │ │ └── Vibration.d.ts │ │ ├── WebSocket │ │ │ ├── NativeWebSocketModule.d.ts │ │ │ └── WebSocket.d.ts │ │ ├── YellowBox │ │ │ └── YellowBoxDeprecated.d.ts │ │ └── vendor │ │ │ └── emitter │ │ │ ├── EventEmitter.d.ts │ │ │ ├── _EmitterSubscription.d.ts │ │ │ ├── _EventEmitter.d.ts │ │ │ ├── _EventSubscription.d.ts │ │ │ └── _EventSubscriptionVendor.d.ts │ │ ├── TypeScriptSupplementals │ │ ├── Animated.d.ts │ │ ├── DeprecatedColorPropType.d.ts │ │ ├── DeprecatedDefinitelyTypedExports.d.ts │ │ ├── DeprecatedImageSourcePropType.d.ts │ │ ├── DeprecatedLegacyDefinitelyTypedPropsExports.d.ts │ │ ├── globals.d.ts │ │ ├── index.d.ts │ │ └── sizesDiffer.d.ts │ │ ├── index.d.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── overrides.android.ts │ ├── overrides.ios.ts │ └── overrides.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | yarn-error.log 4 | types-*.tgz 5 | build 6 | **/hint/__modified__/**/*.js.flow 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120, 3 | "tabWidth": 2, 4 | "semi": false, 5 | "singleQuote": false, 6 | "useTabs": false 7 | } 8 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode", "flowtype.flow-for-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/flow2dts-flow-types-polyfill/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "esModuleInterop": true 4 | }, 5 | "include": ["*.d.ts"] 6 | } 7 | -------------------------------------------------------------------------------- /packages/flow2dts/bin/flow2dts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("../lib/cli.js") 3 | -------------------------------------------------------------------------------- /packages/flow2dts/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: "ts-jest", 3 | testEnvironment: "node", 4 | testMatch: ["**/__tests__/**/*.test.ts"], 5 | } 6 | -------------------------------------------------------------------------------- /packages/flow2dts/src/index.ts: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | import { transform } from "./transform" 5 | 6 | export default transform 7 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/class-simple/code.js: -------------------------------------------------------------------------------- 1 | class CA {} 2 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/class-simple/output.d.ts: -------------------------------------------------------------------------------- 1 | declare class CA {} 2 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/commonjs-module-exports/code.js: -------------------------------------------------------------------------------- 1 | import typeof MyClass from "MyClass" 2 | 3 | declare module.exports: {| 4 | someKey: string, 5 | anotherKey: () => boolean, 6 | MyClass: MyClass, 7 | |} 8 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/interface-extends/code.js: -------------------------------------------------------------------------------- 1 | interface IA { 2 | x: number; 3 | } 4 | 5 | interface IB extends IA { 6 | y: number; 7 | } 8 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/interface-extends/output.d.ts: -------------------------------------------------------------------------------- 1 | interface IA { 2 | x: number 3 | } 4 | interface IB extends IA { 5 | y: number 6 | } 7 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/interface-simple/code.js: -------------------------------------------------------------------------------- 1 | interface IA {} 2 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/interface-simple/output.d.ts: -------------------------------------------------------------------------------- 1 | interface IA {} 2 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-default-with-class-instance/code.js: -------------------------------------------------------------------------------- 1 | declare class Foo {} 2 | declare module.exports: Foo 3 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-default-with-class-instance/output.d.ts: -------------------------------------------------------------------------------- 1 | declare class Foo {} 2 | declare const $f2tExportDefault: Foo 3 | export default $f2tExportDefault 4 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-default-with-class/code.js: -------------------------------------------------------------------------------- 1 | declare class Foo {} 2 | declare module.exports: typeof Foo 3 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-default-with-class/output.d.ts: -------------------------------------------------------------------------------- 1 | declare class Foo {} 2 | export default Foo 3 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-default-with-typeof/code.js: -------------------------------------------------------------------------------- 1 | declare function foo(a: string): number 2 | declare export default typeof foo 3 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-default-with-typeof/output.d.ts: -------------------------------------------------------------------------------- 1 | declare function foo(a: string): number 2 | declare const $f2tExportDefault: typeof foo 3 | export default $f2tExportDefault 4 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-identifier/code.js: -------------------------------------------------------------------------------- 1 | const a: { x: string, y: number } = { x: "text", y: 123 } 2 | export default a 3 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-identifier/output.d.ts: -------------------------------------------------------------------------------- 1 | declare const a: { 2 | x: string 3 | y: number 4 | } 5 | export default a 6 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-simple/code.js: -------------------------------------------------------------------------------- 1 | interface A {} 2 | interface B {} 3 | interface C {} 4 | 5 | export default A 6 | export { B, C as D } 7 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-simple/output.d.ts: -------------------------------------------------------------------------------- 1 | interface A {} 2 | interface B {} 3 | interface C {} 4 | export default A 5 | export { B, C as D } 6 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-withtype/code.js: -------------------------------------------------------------------------------- 1 | export default ({ x: "text", y: 123 }: { x: string, y: number }) 2 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/module-export-withtype/output.d.ts: -------------------------------------------------------------------------------- 1 | declare const $f2tExportDefault: { 2 | x: string 3 | y: number 4 | } 5 | export default $f2tExportDefault 6 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/object-exact/code.js: -------------------------------------------------------------------------------- 1 | type SomeExactObject = {||} 2 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/object-exact/output.d.ts: -------------------------------------------------------------------------------- 1 | declare type SomeExactObject = 2 | /*[FLOW2DTS - Warning] This type was an exact object type in the original Flow source.*/ 3 | {} 4 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/object-key-optional/code.js: -------------------------------------------------------------------------------- 1 | type a = { 2 | a: string, 3 | b?: string, 4 | c: ?string, 5 | d?: ?string, 6 | } 7 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/object-key-optional/output.d.ts: -------------------------------------------------------------------------------- 1 | declare type a = { 2 | a: string 3 | b?: string 4 | c?: null | undefined | string 5 | d?: null | undefined | string 6 | } 7 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/object-key-variance/code.js: -------------------------------------------------------------------------------- 1 | type ObjectWithKeyVariance = { 2 | +readonlyKey: null, 3 | -writeonlyKey: null, 4 | } 5 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/type-function/code.js: -------------------------------------------------------------------------------- 1 | type a = () => void 2 | type b = (x: string, y?: number, ...z: Array) => boolean 3 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/type-function/output.d.ts: -------------------------------------------------------------------------------- 1 | declare type a = () => void 2 | declare type b = (x: string, y?: number, ...z: number[]) => boolean 3 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/type-literal/code.js: -------------------------------------------------------------------------------- 1 | type a = true 2 | type b = false 3 | type c = 1 4 | type d = "text" 5 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/type-literal/output.d.ts: -------------------------------------------------------------------------------- 1 | declare type a = true 2 | declare type b = false 3 | declare type c = 1 4 | declare type d = "text" 5 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/variable-definition/code.js: -------------------------------------------------------------------------------- 1 | let a1: number = 0 2 | let a2: number 3 | var b1: number = 0 4 | var b2: number 5 | const c1: number = 0 6 | const c2: number = 0 7 | -------------------------------------------------------------------------------- /packages/flow2dts/src/transform/__tests__/__fixtures__/variable-definition/output.d.ts: -------------------------------------------------------------------------------- 1 | declare let a1: number 2 | declare let a2: number 3 | declare var b1: number 4 | declare var b2: number 5 | declare const c1: number 6 | declare const c2: number 7 | -------------------------------------------------------------------------------- /packages/flow2hint/bin/flow2hint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("../lib/cli.js") 3 | -------------------------------------------------------------------------------- /packages/flow2hint/src/index.ts: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | export * from "./hintfile" 5 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/ArtworkTileRail/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ArtworkTileRail" 2 | export * from "./ArtworkTileRailCard" 3 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/Bidding/Components/__tests__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/Bidding/Screens/__tests__/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/Countdown/index.ts: -------------------------------------------------------------------------------- 1 | export { SimpleTicker, LabeledTicker, durationSections } from "./Ticker" 2 | export { StateManager } from "./StateManager" 3 | export { DurationProvider } from "./DurationProvider" 4 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/FilterModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FilterModal" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/FilteredInfiniteScrollGrid/index.ts: -------------------------------------------------------------------------------- 1 | export { FilteredInfiniteScrollGridContainer as FilteredInfiniteScrollGrid } from "./FilteredInfiniteScrollGrid" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/SaleArtworkTileRailCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SaleArtworkTileRailCard" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/Text/LinkText.tsx: -------------------------------------------------------------------------------- 1 | import styled from "styled-components/native" 2 | 3 | export const LinkText = styled.Text` 4 | text-decoration-line: underline; 5 | ` 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Components/__tests__/ScrollView-tests.tsx: -------------------------------------------------------------------------------- 1 | describe("ScrollView", () => { 2 | it("todo", () => { 3 | // console.log('foo') 4 | }) 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Icons/Consignments/index.tsx: -------------------------------------------------------------------------------- 1 | export { CamIcon } from "./CamIcon" 2 | export { MoneyIcon } from "./MoneyIcon" 3 | export { SellIcon } from "./SellIcon" 4 | export { OfferIcon } from "./OfferIcon" 5 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Artwork/Components/ImageCarousel/FullScreen/DeepZoom/__deepZoomDebug.ts: -------------------------------------------------------------------------------- 1 | export const VISUAL_DEBUG_MODE = false 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Artwork/index.ts: -------------------------------------------------------------------------------- 1 | export { ArtworkContainer, ArtworkQueryRenderer } from "./Artwork" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/ArtworkAttributionClassFAQ/index.ts: -------------------------------------------------------------------------------- 1 | export { ArtworkAttributionClassFAQQueryRenderer } from "./ArtworkAttributionClassFAQ" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/BottomTabs/BottomTabType.ts: -------------------------------------------------------------------------------- 1 | // This file must match "ARTabType.m/h" 2 | export type BottomTabType = "home" | "search" | "inbox" | "sell" | "profile" 3 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/City/Components/__tests__/AllEvents-tests.tsx: -------------------------------------------------------------------------------- 1 | import { AllEvents } from "../AllEvents" 2 | 3 | describe(AllEvents, () => { 4 | it.todo("No tests yet, it's just placeholders so far.") 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/City/Components/__tests__/EventList-tests.tsx: -------------------------------------------------------------------------------- 1 | import { EventList } from "../EventList" 2 | 3 | describe(EventList, () => { 4 | it.todo("No tests yet, it's just placeholders so far.") 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/City/index.tsx: -------------------------------------------------------------------------------- 1 | export { CityView } from "./City" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Consignments/ConsignmentsHome/Components/TextContainer.tsx: -------------------------------------------------------------------------------- 1 | import { Box } from "palette" 2 | import styled from "styled-components/native" 3 | 4 | export const TextContainer = styled(Box)` 5 | flex: 1; 6 | ` 7 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Home/__tests__/SectionTitle-tests.tsx: -------------------------------------------------------------------------------- 1 | describe("SectionHeader", () => { 2 | it("todo", () => { 3 | // console.log('foo') 4 | }) 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Map/index.ts: -------------------------------------------------------------------------------- 1 | export { GlobalMap } from "./GlobalMap" 2 | export { MapRenderer } from "./MapRenderer" 3 | export { MapContainer } from "./MapContainer" 4 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/MyAccount/__tests__/MyAccountEditName-tests.tsx: -------------------------------------------------------------------------------- 1 | import { MyAccountEditNameQueryRenderer } from "../MyAccountEditName" 2 | 3 | describe(MyAccountEditNameQueryRenderer, () => { 4 | it.todo("No tests yet") 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/MyAccount/__tests__/MyAccountEditPassword-tests.tsx: -------------------------------------------------------------------------------- 1 | import { MyAccountEditPassword } from "../MyAccountEditPassword" 2 | 3 | describe(MyAccountEditPassword, () => { 4 | it.todo("No tests yet") 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/MyBids/index.ts: -------------------------------------------------------------------------------- 1 | export { MyBidsQueryRenderer } from "./MyBids" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Partner/index.ts: -------------------------------------------------------------------------------- 1 | export { PartnerContainer, PartnerQueryRenderer } from "./Partner" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/PrivacyRequest/index.tsx: -------------------------------------------------------------------------------- 1 | export { PrivacyRequest } from "./PrivacyRequest" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Sale/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Sale" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/SaleInfo/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SaleInfo" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Sales/Components/__tests__/SaleList-tests.tsx: -------------------------------------------------------------------------------- 1 | describe("SaleList", () => { 2 | it("todo", () => { 3 | // console.log('foo') 4 | }) 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Sales/Components/__tests__/SectionHeader-tests.tsx: -------------------------------------------------------------------------------- 1 | describe("SectionHeader", () => { 2 | it("todo", () => { 3 | // console.log('foo') 4 | }) 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Search/index.tsx: -------------------------------------------------------------------------------- 1 | export { Search } from "./Search" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Show/Components/ShowHeader/index.ts: -------------------------------------------------------------------------------- 1 | export { ShowHeader, ShowHeaderContainer } from "./ShowHeader" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Show/__tests__/fixtures/index.ts: -------------------------------------------------------------------------------- 1 | export { ShowFixture } from "./ShowFixture" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/Scenes/Show2/index.ts: -------------------------------------------------------------------------------- 1 | export { Show2QueryRenderer } from "./Show2" 2 | export { Show2MoreInfoQueryRenderer } from "./Screens/Show2MoreInfo" 3 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lib", 3 | "devDependencies": { 4 | "@types/enzyme": "3.9.3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/types/SafeAreaInsets.ts: -------------------------------------------------------------------------------- 1 | export interface SafeAreaInsets { 2 | top: number 3 | bottom: number 4 | left: number 5 | right: number 6 | } 7 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/utils/__tests__/getTestWrapper-tests.tsx: -------------------------------------------------------------------------------- 1 | describe("getTestWrapper", () => { 2 | it("todo", () => { 3 | // console.log('foo') 4 | }) 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/utils/__tests__/isCloseToBottom-tests.ts: -------------------------------------------------------------------------------- 1 | describe("isCloseToBottom", () => { 2 | it("todo", () => { 3 | // console.log('foo') 4 | }) 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/utils/__tests__/router-tests.ts: -------------------------------------------------------------------------------- 1 | import { Router } from "../router" 2 | 3 | it("Should have a router enum", () => { 4 | expect(Router).toBeTruthy() 5 | }) 6 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/utils/auction/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./bidderNeedsIdentityVerification" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/utils/conversions.ts: -------------------------------------------------------------------------------- 1 | export const in2cm = (inches: number) => inches * 2.54 2 | 3 | export const cm2in = (cm: number) => cm / 2.54 4 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/lib/utils/devCacheBust.ts: -------------------------------------------------------------------------------- 1 | // tiny dev tool to bust the image cache on reload for testing loading states 2 | const now = Date.now() 3 | export const devCacheBust = (url: string) => (__DEV__ ? url + "?time=" + now : url) 4 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Avatar/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Avatar" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/BorderBox/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./BorderBox" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Box/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Box" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Button/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Button" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Cards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SmallCard" 2 | export * from "./MediumCard" 3 | export * from "./LargeCard" 4 | export * from "./CardTag" 5 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Collapse/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Collapse" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/EntityHeader/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./EntityHeader" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Flex/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Flex" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Join/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Join" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Message/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Message" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Separator/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Separator" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Spacer/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Spacer" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Spinner/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Spinner" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Text/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Text" 2 | export * from "./tokens" 3 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Touchable/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Touchable" 2 | export * from "./TouchableWithScale" 3 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/elements/Typography/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Typography" 2 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./color" 2 | export * from "./space" 3 | export * from "./typography" 4 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/src/palette/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "palette" 3 | } 4 | -------------------------------------------------------------------------------- /workbench/artsy-eigen/typings/graphql.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.graphql" { 2 | const data: string 3 | export = data 4 | } 5 | -------------------------------------------------------------------------------- /workbench/react-native/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | .*\.ts 3 | .*\.json 4 | 5 | [options] 6 | module.file_ext=.ios.js 7 | module.file_ext=.android.js 8 | module.file_ext=.js 9 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Animated/src/bezier.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/InitializeCore.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/checkNativeVersion.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/polyfillPromise.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpAlert.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpBatchedBridge.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpDeveloperTools.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpErrorHandling.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpGlobals.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpNavigator.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpPerformance.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpReactDevTools.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpReactRefresh.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpRegeneratorRuntime.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpSystrace.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpTimers.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Core/setUpXHR.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Image/RelativeImageStub.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/ReactNative/RootTagContext.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/ReactNative/UIManagerProperties.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/hint/Libraries/Text/TextAncestor.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/IntegrationTests/IntegrationTestsApp.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/IntegrationTests/websocket_integration_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Animated/src/__tests__/bezier-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Animated/src/bezier.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: ( 3 | mX1: number, 4 | mY1: number, 5 | mX2: number, 6 | mY2: number 7 | ) => (x: number) => number; 8 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Blob/__mocks__/BlobModule.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var BlobModule: {| 3 | createFromParts(): void, 4 | release(): void, 5 | |}; 6 | 7 | declare module.exports: typeof BlobModule; 8 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/BugReporting/dumpReactTree.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dumpReactTree(): string; 3 | 4 | declare module.exports: typeof dumpReactTree; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/BugReporting/getReactData.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function getData(element: Object): Object; 3 | 4 | declare module.exports: typeof getData; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/ActivityIndicator/__tests__/ActivityIndicator-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/CheckBox/CheckBox.ios.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | const $1 = require("../UnimplementedViews/UnimplementedView"); 3 | declare module.exports: typeof $1; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/DatePicker/__tests__/DatePickerIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.ios.js.flow: -------------------------------------------------------------------------------- 1 | import UnimplementedView from "../UnimplementedViews/UnimplementedView" 2 | declare module.exports: typeof UnimplementedView 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/DrawerAndroid/__tests__/DrawerAndroid-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/Keyboard/__tests__/Keyboard-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/MaskedView/__tests__/MaskedViewIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/Picker/__tests__/Picker-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/Pressable/__tests__/Pressable-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.ios.js.flow: -------------------------------------------------------------------------------- 1 | import UnimplementedView from "../UnimplementedViews/UnimplementedView" 2 | declare module.exports: typeof UnimplementedView 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/ProgressBarAndroid/__tests__/ProgressBarAndroid-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/ProgressViewIOS/__tests__/ProgressViewIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/SafeAreaView/__tests__/SafeAreaView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/ScrollView/__tests__/ScrollView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: NativeSegmentedControlIOS; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/Sound/SoundManager.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var SoundManager: {| 3 | playTouchSound: () => void, 4 | |}; 5 | 6 | declare module.exports: typeof SoundManager; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/TextInput/__tests__/InputAccessoryView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/TextInput/__tests__/TextInput-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Components/Touchable/ensurePositiveDelayProps.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var ensurePositiveDelayProps: (props: any) => void; 3 | 4 | declare module.exports: typeof ensurePositiveDelayProps; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/Devtools/__tests__/parseHermesStack-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/Devtools/openFileInEditor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function openFileInEditor(file: string, lineNumber: number): void; 3 | 4 | declare module.exports: typeof openFileInEditor; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/Devtools/openURLInBrowser.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function openURLInBrowser(url: string): void; 3 | 4 | declare module.exports: typeof openURLInBrowser; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/InitializeCore.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/ReactNativeVersionCheck.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {|checkVersions: () => void|}; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/checkNativeVersion.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/polyfillPromise.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpAlert.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpBatchedBridge.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpDeveloperTools.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpErrorHandling.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpGlobals.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpNavigator.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpPerformance.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpReactDevTools.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpReactRefresh.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpRegeneratorRuntime.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpSystrace.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpTimers.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Core/setUpXHR.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/EventEmitter/RCTEventEmitter.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var RCTEventEmitter: {| 3 | register(eventEmitter: any): void, 4 | |}; 5 | 6 | declare module.exports: typeof RCTEventEmitter; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/HeapCapture/HeapCapture.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var HeapCapture: {| 3 | captureHeap: (path: string) => void, 4 | |}; 5 | 6 | declare module.exports: typeof HeapCapture; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Image/RelativeImageStub.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: number; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Image/__tests__/Image-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Interaction/BridgeSpyStallHandler.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var BridgeSpyStallHandler: {| 3 | register: () => void, 4 | |}; 5 | 6 | declare module.exports: typeof BridgeSpyStallHandler; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/Data/__tests__/LogBoxData-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/Data/__tests__/LogBoxLog-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/Data/__tests__/LogBoxSymbolication-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/Data/__tests__/parseLogBoxLog-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxButton-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspector-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorCodeFrame-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorFooter-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorHeader-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorMesageHeader-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorReactFrames-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorSection-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorSourceMapStatus-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorStackFrame-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorStackFrames-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxMessage-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/UI/__tests__/LogBoxNotification-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/__tests__/LogBox-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/__tests__/LogBoxInspectorContainer-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/LogBox/__tests__/LogBoxNotificationContainer-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Modal/__tests__/Modal-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/NewAppScreen/components/Header.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Node} from "react"; 3 | 4 | declare var Header: () => Node; 5 | 6 | declare export default typeof Header; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/NewAppScreen/components/LearnMoreLinks.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Node} from "react"; 3 | 4 | declare var LinkList: () => Node; 5 | 6 | declare export default typeof LinkList; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Performance/SamplingProfiler.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var SamplingProfiler: {| 3 | poke: (token: number) => void, 4 | |}; 5 | 6 | declare module.exports: typeof SamplingProfiler; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Pressability/HoverState.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function isHoverEnabled(): boolean; 3 | export {isHoverEnabled}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Pressability/__tests__/Pressability-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Promise.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var Promise: typeof $1; 3 | const $1 = require("promise/setimmediate/es6-extensions"); 4 | 5 | declare module.exports: typeof Promise; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/ReactNative/HeadlessJsTaskError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare class HeadlessJsTaskError extends $1 {} 3 | declare var $1: typeof Error; 4 | export {HeadlessJsTaskError as default}; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/ReactNative/RootTagContext.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: React$Context; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/ReactPrivate/ReactNativePrivateInitializeCore.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Renderer/shims/ReactFabric.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ReactNativeType} from "./ReactNativeTypes"; 3 | 4 | declare module.exports: ReactNativeType; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Renderer/shims/ReactFeatureFlags.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var ReactFeatureFlags: {| 3 | debugRenderPhaseSideEffects: boolean, 4 | |}; 5 | 6 | declare module.exports: typeof ReactFeatureFlags; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Renderer/shims/ReactNative.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ReactNativeType} from "./ReactNativeTypes"; 3 | 4 | declare module.exports: ReactNativeType; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/StyleSheet/EdgeInsetsPropType.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Rect} from "./Rect"; 3 | 4 | type EdgeInsetsProp = Rect; 5 | export type {EdgeInsetsProp}; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/StyleSheet/PointPropType.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | type PointProp = $ReadOnly< 3 | { 4 | x: number, 5 | y: number, 6 | ..., 7 | }, 8 | >; 9 | export type {PointProp}; 10 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | testGoodCompose(): void, 4 | 5 | testBadCompose(): void, 6 | |}; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/StyleSheet/setNormalizedColorAlpha.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function setNormalizedColorAlpha(input: number, alpha: number): number; 3 | 4 | declare module.exports: typeof setNormalizedColorAlpha; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Text/TextAncestor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: React$Context<$FlowFixMe>; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/DebugEnvironment.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var isAsyncDebugging: boolean; 3 | export {isAsyncDebugging}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/DeviceInfo.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import NativeDeviceInfo from "./NativeDeviceInfo"; 3 | 4 | declare module.exports: typeof NativeDeviceInfo; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/JSDevSupportModule.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var JSDevSupportModule: {| 3 | getJSHierarchy: (tag: number) => void, 4 | |}; 5 | 6 | declare module.exports: typeof JSDevSupportModule; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/LoadingView.ios.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | showMessage(message: string, type: 'load' | 'refresh'): void, 4 | hide(): void, 5 | |}; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/__tests__/setAndForwardRef-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/__tests__/stringifySafe-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/binaryToBase64.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function binaryToBase64(data: ArrayBuffer | $ArrayBufferView): any; 3 | 4 | declare module.exports: typeof binaryToBase64; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/clamp.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function clamp(min: number, value: number, max: number): number; 3 | 4 | declare module.exports: typeof clamp; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/dismissKeyboard.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dismissKeyboard(): void; 3 | 4 | declare module.exports: typeof dismissKeyboard; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/groupByEveryN.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function groupByEveryN(array: Array, n: number): Array>; 3 | 4 | declare module.exports: typeof groupByEveryN; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/infoLog.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function infoLog(...args: Array): void; 3 | 4 | declare module.exports: typeof infoLog; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/logError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var logError: (...args: $ReadOnlyArray) => void; 3 | 4 | declare module.exports: typeof logError; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/mergeIntoFast.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var mergeIntoFast: (one: Object, two: Object) => void; 3 | 4 | declare module.exports: typeof mergeIntoFast; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/Utilities/warnOnce.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function warnOnce(key: string, message: string): void; 3 | 4 | declare module.exports: typeof warnOnce; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/YellowBox/__tests__/YellowBoxDeprecated-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/__flowtests__/ReactNativeTypes-flowtest.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/promiseRejectionIsError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: () => void; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/Libraries/vendor/core/ErrorUtils.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ErrorUtilsT} from "../../polyfills/error-guard"; 3 | 4 | declare module.exports: ErrorUtilsT; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/RNTester/js/examples/WebSocket/http_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/RNTester/js/examples/WebSocket/websocket_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/ReactCommon/hermes/inspector/tools/msggen/src/GeneratedHeader.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var GeneratedHeader: string; 3 | export {GeneratedHeader}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/ReactCommon/hermes/inspector/tools/msggen/src/index.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/jest/mockScrollView.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: $FlowFixMe; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/jest/preprocessor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | process(src: string, file: string): string, 4 | 5 | getCacheKey: any, 6 | |}; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/buck_tests/generate-tests.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/__tests__/SchemaValidator-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/cli/parser/parser-cli.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/cli/parser/parser.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function parseFiles(files: Array): void; 3 | 4 | declare module.exports: typeof parseFiles; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/cli/verify_with_old_codegen.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateComponentDescriptorH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateComponentHObjCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateEventEmitterCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateEventEmitterH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsJavaDelegate-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsJavaInterface-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateShadowNodeCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateShadowNodeH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateTests-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateViewConfigJs-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleHObjCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleMm-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateStructs-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/parsers/flow/components/__tests__/component-parser-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/inputs/packages/react-native-codegen/src/parsers/flow/modules/__tests__/module-parser-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Animated/src/bezier.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare const $f2tExportDefault: (mX1: number, mY1: number, mX2: number, mY2: number) => (x: number) => number; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/BatchedBridge/BatchedBridge.d.ts: -------------------------------------------------------------------------------- 1 | import $1 from "./MessageQueue"; 2 | declare var BatchedBridge: $1; 3 | declare const $f2tExportDefault: typeof BatchedBridge; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/BugReporting/dumpReactTree.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dumpReactTree(): string; 3 | declare const $f2tExportDefault: typeof dumpReactTree; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/BugReporting/getReactData.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function getData(element: Object): Object; 3 | declare const $f2tExportDefault: typeof getData; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/InitializeCore.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/checkNativeVersion.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/polyfillPromise.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpAlert.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpBatchedBridge.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpDeveloperTools.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpErrorHandling.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpGlobals.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpNavigator.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpPerformance.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpReactDevTools.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpReactRefresh.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpRegeneratorRuntime.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpSystrace.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpTimers.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Core/setUpXHR.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts: -------------------------------------------------------------------------------- 1 | import $1 from "./RCTDeviceEventEmitter"; 2 | declare const $f2tExportDefault: typeof $1; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Image/RelativeImageStub.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare const $f2tExportDefault: number; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Pressability/HoverState.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function isHoverEnabled(): boolean; 3 | export { isHoverEnabled }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/ReactNative/HeadlessJsTaskError.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare class HeadlessJsTaskError extends Error {} 3 | export { HeadlessJsTaskError as default }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Renderer/shims/ReactFabric.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ReactNativeType } from "./ReactNativeTypes"; 3 | declare const $f2tExportDefault: ReactNativeType; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Renderer/shims/ReactNative.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ReactNativeType } from "./ReactNativeTypes"; 3 | declare const $f2tExportDefault: ReactNativeType; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/StyleSheet/EdgeInsetsPropType.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { Rect } from "./Rect"; 3 | declare type EdgeInsetsProp = Rect; 4 | export type { EdgeInsetsProp }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/StyleSheet/PlatformColorValueTypesAndroid.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ColorValue } from "./StyleSheetTypes"; 3 | declare var ColorAndroid: (color: string) => ColorValue; 4 | export { ColorAndroid }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/StyleSheet/PointPropType.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare type PointProp = Readonly<{ 3 | x: number; 4 | y: number; 5 | }>; 6 | export type { PointProp }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Utilities/DebugEnvironment.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var isAsyncDebugging: boolean; 3 | export { isAsyncDebugging }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Utilities/DeviceInfo.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import NativeDeviceInfo from "./NativeDeviceInfo"; 3 | declare const $f2tExportDefault: typeof NativeDeviceInfo; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Utilities/clamp.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function clamp(min: number, value: number, max: number): number; 3 | declare const $f2tExportDefault: typeof clamp; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Utilities/dismissKeyboard.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dismissKeyboard(): void; 3 | declare const $f2tExportDefault: typeof dismissKeyboard; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Utilities/infoLog.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function infoLog(...args: unknown[]): void; 3 | declare const $f2tExportDefault: typeof infoLog; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Utilities/logError.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var logError: (...args: ReadonlyArray) => void; 3 | declare const $f2tExportDefault: typeof logError; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/Libraries/Utilities/warnOnce.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function warnOnce(key: string, message: string): void; 3 | declare const $f2tExportDefault: typeof warnOnce; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/android/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmit": true, 4 | "esModuleInterop": true, 5 | "lib": ["es2015"], 6 | "types": [], 7 | "strict": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Animated/src/bezier.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare const $f2tExportDefault: (mX1: number, mY1: number, mX2: number, mY2: number) => (x: number) => number; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/BatchedBridge/BatchedBridge.d.ts: -------------------------------------------------------------------------------- 1 | import $1 from "./MessageQueue"; 2 | declare var BatchedBridge: $1; 3 | declare const $f2tExportDefault: typeof BatchedBridge; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/BugReporting/dumpReactTree.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dumpReactTree(): string; 3 | declare const $f2tExportDefault: typeof dumpReactTree; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/BugReporting/getReactData.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function getData(element: Object): Object; 3 | declare const $f2tExportDefault: typeof getData; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Components/CheckBox/CheckBox.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import $1 from "../UnimplementedViews/UnimplementedView"; 3 | declare const $f2tExportDefault: typeof $1; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/InitializeCore.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/checkNativeVersion.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/polyfillPromise.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpAlert.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpBatchedBridge.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpDeveloperTools.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpErrorHandling.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpGlobals.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpNavigator.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpPerformance.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpReactDevTools.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpReactRefresh.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpRegeneratorRuntime.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpSystrace.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpTimers.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Core/setUpXHR.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts: -------------------------------------------------------------------------------- 1 | import $1 from "./RCTDeviceEventEmitter"; 2 | declare const $f2tExportDefault: typeof $1; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Image/RelativeImageStub.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare const $f2tExportDefault: number; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Pressability/HoverState.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function isHoverEnabled(): boolean; 3 | export { isHoverEnabled }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/ReactNative/HeadlessJsTaskError.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare class HeadlessJsTaskError extends Error {} 3 | export { HeadlessJsTaskError as default }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Renderer/shims/ReactFabric.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ReactNativeType } from "./ReactNativeTypes"; 3 | declare const $f2tExportDefault: ReactNativeType; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Renderer/shims/ReactNative.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ReactNativeType } from "./ReactNativeTypes"; 3 | declare const $f2tExportDefault: ReactNativeType; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/StyleSheet/EdgeInsetsPropType.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { Rect } from "./Rect"; 3 | declare type EdgeInsetsProp = Rect; 4 | export type { EdgeInsetsProp }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/StyleSheet/PlatformColorValueTypesAndroid.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ColorValue } from "./StyleSheetTypes"; 3 | declare var ColorAndroid: (color: string) => ColorValue; 4 | export { ColorAndroid }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/StyleSheet/PointPropType.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare type PointProp = Readonly<{ 3 | x: number; 4 | y: number; 5 | }>; 6 | export type { PointProp }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Utilities/DebugEnvironment.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var isAsyncDebugging: boolean; 3 | export { isAsyncDebugging }; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Utilities/DeviceInfo.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import NativeDeviceInfo from "./NativeDeviceInfo"; 3 | declare const $f2tExportDefault: typeof NativeDeviceInfo; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Utilities/clamp.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function clamp(min: number, value: number, max: number): number; 3 | declare const $f2tExportDefault: typeof clamp; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Utilities/dismissKeyboard.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dismissKeyboard(): void; 3 | declare const $f2tExportDefault: typeof dismissKeyboard; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Utilities/infoLog.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function infoLog(...args: unknown[]): void; 3 | declare const $f2tExportDefault: typeof infoLog; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Utilities/logError.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var logError: (...args: ReadonlyArray) => void; 3 | declare const $f2tExportDefault: typeof logError; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Utilities/mergeIntoFast.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var mergeIntoFast: (one: Object, two: Object) => void; 3 | declare const $f2tExportDefault: typeof mergeIntoFast; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/Libraries/Utilities/warnOnce.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function warnOnce(key: string, message: string): void; 3 | declare const $f2tExportDefault: typeof warnOnce; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.63.3/outputs/ios/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmit": true, 4 | "esModuleInterop": true, 5 | "lib": ["es2015"], 6 | "types": [], 7 | "strict": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Animated/bezier.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/InitializeCore.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/checkNativeVersion.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/polyfillPromise.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpAlert.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpBatchedBridge.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpDeveloperTools.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpErrorHandling.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpGlobals.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpNavigator.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpPerformance.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpReactDevTools.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpReactRefresh.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpRegeneratorRuntime.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpSystrace.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpTimers.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Core/setUpXHR.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Image/RelativeImageStub.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/ReactNative/UIManagerProperties.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/hint/Libraries/Text/TextAncestor.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/IntegrationTests/IntegrationTestsApp.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/IntegrationTests/websocket_integration_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Animated/__tests__/bezier-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Animated/bezier.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: ( 3 | mX1: number, 4 | mY1: number, 5 | mX2: number, 6 | mY2: number 7 | ) => (x: number) => number; 8 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Blob/__mocks__/BlobModule.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var BlobModule: {| 3 | createFromParts(): void, 4 | release(): void, 5 | |}; 6 | 7 | declare module.exports: typeof BlobModule; 8 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/BugReporting/dumpReactTree.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dumpReactTree(): string; 3 | 4 | declare module.exports: typeof dumpReactTree; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/BugReporting/getReactData.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function getData(element: Object): Object; 3 | 4 | declare module.exports: typeof getData; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/ActivityIndicator/__tests__/ActivityIndicator-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/DatePicker/__tests__/DatePickerIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/DrawerAndroid/__tests__/DrawerAndroid-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/Keyboard/__tests__/Keyboard-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/MaskedView/MaskedViewIOS.android.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | const $1 = require("../UnimplementedViews/UnimplementedView"); 3 | declare module.exports: typeof $1; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/MaskedView/__tests__/MaskedViewIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/Picker/__tests__/Picker-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/Pressable/__tests__/Pressable-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/ProgressBarAndroid/__tests__/ProgressBarAndroid-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/ProgressViewIOS/__tests__/ProgressViewIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/SafeAreaView/__tests__/SafeAreaView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/ScrollView/__tests__/ScrollView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/Sound/SoundManager.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var SoundManager: {| 3 | playTouchSound: () => void, 4 | |}; 5 | 6 | declare module.exports: typeof SoundManager; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/TextInput/__tests__/InputAccessoryView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/TextInput/__tests__/TextInput-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Components/Touchable/ensurePositiveDelayProps.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var ensurePositiveDelayProps: (props: any) => void; 3 | 4 | declare module.exports: typeof ensurePositiveDelayProps; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/Devtools/__tests__/parseHermesStack-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/Devtools/openFileInEditor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function openFileInEditor(file: string, lineNumber: number): void; 3 | 4 | declare module.exports: typeof openFileInEditor; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/Devtools/openURLInBrowser.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function openURLInBrowser(url: string): void; 3 | 4 | declare module.exports: typeof openURLInBrowser; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/InitializeCore.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/ReactNativeVersionCheck.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {|checkVersions: () => void|}; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/checkNativeVersion.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/polyfillPromise.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpAlert.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpBatchedBridge.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpDeveloperTools.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpErrorHandling.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpGlobals.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpNavigator.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpPerformance.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpReactDevTools.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpReactRefresh.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpRegeneratorRuntime.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpSystrace.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpTimers.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Core/setUpXHR.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/EventEmitter/RCTEventEmitter.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var RCTEventEmitter: {| 3 | register(eventEmitter: any): void, 4 | |}; 5 | 6 | declare module.exports: typeof RCTEventEmitter; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/HeapCapture/HeapCapture.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var HeapCapture: {| 3 | captureHeap: (path: string) => void, 4 | |}; 5 | 6 | declare module.exports: typeof HeapCapture; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Image/AssetRegistry.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | const $1 = require("@react-native/assets/registry"); 3 | declare module.exports: typeof $1; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Image/RelativeImageStub.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: number; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Image/__tests__/Image-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Interaction/BridgeSpyStallHandler.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var BridgeSpyStallHandler: {| 3 | register: () => void, 4 | |}; 5 | 6 | declare module.exports: typeof BridgeSpyStallHandler; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/Data/__tests__/LogBoxData-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/Data/__tests__/LogBoxLog-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/Data/__tests__/LogBoxSymbolication-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/Data/__tests__/parseLogBoxLog-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxButton-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspector-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorCodeFrame-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorFooter-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorHeader-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorMesageHeader-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorReactFrames-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorSection-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorSourceMapStatus-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorStackFrame-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorStackFrames-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxMessage-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/UI/__tests__/LogBoxNotification-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/__tests__/LogBox-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/__tests__/LogBoxInspectorContainer-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/LogBox/__tests__/LogBoxNotificationContainer-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Modal/__tests__/Modal-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Network/fetch.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | fetch: typeof fetch, 4 | Headers: typeof Headers, 5 | Request: typeof Request, 6 | Response: typeof Response, 7 | |}; 8 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/NewAppScreen/components/Header.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Node} from "react"; 3 | 4 | declare var Header: () => Node; 5 | 6 | declare export default typeof Header; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/NewAppScreen/components/HermesBadge.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Node} from "react"; 3 | 4 | declare var HermesBadge: () => Node; 5 | 6 | declare export default typeof HermesBadge; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/NewAppScreen/components/LearnMoreLinks.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Node} from "react"; 3 | 4 | declare var LinkList: () => Node; 5 | 6 | declare export default typeof LinkList; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Performance/SamplingProfiler.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var SamplingProfiler: {| 3 | poke: (token: number) => void, 4 | |}; 5 | 6 | declare module.exports: typeof SamplingProfiler; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Pressability/HoverState.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function isHoverEnabled(): boolean; 3 | export {isHoverEnabled}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Pressability/__tests__/Pressability-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Promise.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var Promise: typeof $1; 3 | const $1 = require("promise/setimmediate/es6-extensions"); 4 | 5 | declare module.exports: typeof Promise; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/ReactNative/HeadlessJsTaskError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare class HeadlessJsTaskError extends $1 {} 3 | declare var $1: typeof Error; 4 | export {HeadlessJsTaskError as default}; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/ReactPrivate/ReactNativePrivateInitializeCore.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Renderer/shims/ReactFabric.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ReactNativeType} from "./ReactNativeTypes"; 3 | 4 | declare module.exports: ReactNativeType; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Renderer/shims/ReactNative.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ReactNativeType} from "./ReactNativeTypes"; 3 | 4 | declare module.exports: ReactNativeType; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/StyleSheet/EdgeInsetsPropType.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Rect} from "./Rect"; 3 | 4 | type EdgeInsetsProp = Rect; 5 | export type {EdgeInsetsProp}; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/StyleSheet/PointPropType.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | type PointProp = $ReadOnly< 3 | { 4 | x: number, 5 | y: number, 6 | ..., 7 | }, 8 | >; 9 | export type {PointProp}; 10 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | testGoodCompose(): void, 4 | 5 | testBadCompose(): void, 6 | |}; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Text/TextAncestor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: React$Context<$FlowFixMe>; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Text/TextInjection.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import typeof Text from "./Text"; 3 | 4 | declare export default {| 5 | unstable_Text: ?Text, 6 | |}; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/DebugEnvironment.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var isAsyncDebugging: boolean; 3 | export {isAsyncDebugging}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/DeviceInfo.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import NativeDeviceInfo from "./NativeDeviceInfo"; 3 | 4 | declare module.exports: typeof NativeDeviceInfo; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/LoadingView.android.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | showMessage(message: string, type: 'load' | 'refresh'): void, 4 | hide(): void, 5 | |}; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/__tests__/PerformanceLogger-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/__tests__/setAndForwardRef-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/__tests__/stringifySafe-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/binaryToBase64.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function binaryToBase64(data: ArrayBuffer | $ArrayBufferView): string; 3 | 4 | declare module.exports: typeof binaryToBase64; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/clamp.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function clamp(min: number, value: number, max: number): number; 3 | 4 | declare module.exports: typeof clamp; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/dismissKeyboard.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dismissKeyboard(): void; 3 | 4 | declare module.exports: typeof dismissKeyboard; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/groupByEveryN.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function groupByEveryN(array: Array, n: number): Array>; 3 | 4 | declare module.exports: typeof groupByEveryN; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/infoLog.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function infoLog(...args: Array): void; 3 | 4 | declare module.exports: typeof infoLog; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/logError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var logError: (...args: $ReadOnlyArray) => void; 3 | 4 | declare module.exports: typeof logError; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/mergeIntoFast.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var mergeIntoFast: (one: Object, two: Object) => void; 3 | 4 | declare module.exports: typeof mergeIntoFast; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/Utilities/warnOnce.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function warnOnce(key: string, message: string): void; 3 | 4 | declare module.exports: typeof warnOnce; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/YellowBox/__tests__/YellowBoxDeprecated-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/__flowtests__/ReactNativeTypes-flowtest.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/promiseRejectionIsError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: () => void; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/Libraries/vendor/core/ErrorUtils.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ErrorUtilsT} from "@react-native/polyfills/error-guard"; 3 | 4 | declare module.exports: ErrorUtilsT; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/ReactCommon/hermes/inspector/tools/msggen/src/GeneratedHeader.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var GeneratedHeader: string; 3 | export {GeneratedHeader}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/ReactCommon/hermes/inspector/tools/msggen/src/index.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow-typed/npm/base64-js_v1.x.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow-typed/npm/pretty-format_v26.x.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow-typed/npm/promise_v8.x.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow-typed/npm/prop-types_v15.x.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow-typed/npm/stacktrace-parser_v0.1.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow/Position.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow/Promise.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow/Stringish.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow/console.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/flow/use-subscription.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/interface.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/jest/mockScrollView.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: $FlowFixMe; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/jest/preprocessor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | process(src: string, file: string): string, 4 | 5 | getCacheKey: any, 6 | |}; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/normalize-color/base.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function normalizeColorBase(color: ?string | number): null | number; 3 | 4 | declare module.exports: typeof normalizeColorBase; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/e2e/__tests__/modules/GenerateModuleObjCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/scripts/build.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/__tests__/SchemaValidator-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/cli/generators/generate-all.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/cli/parser/parser-cli.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/cli/parser/parser.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function parseFiles(files: Array): void; 3 | 4 | declare module.exports: typeof parseFiles; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/cli/verify_with_old_codegen.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateComponentDescriptorH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateComponentHObjCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateEventEmitterCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateEventEmitterH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsJavaDelegate-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsJavaInterface-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateShadowNodeCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateShadowNodeH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateTests-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateViewConfigJs-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleHObjCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleJavaSpec-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleJniCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleJniH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleMm-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/parsers/flow/components/__tests__/component-parser-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/parsers/flow/modules/__tests__/module-parser-e2e-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/react-native-codegen/src/parsers/flow/modules/__tests__/module-parser-snapshot-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/rn-tester/js/RNTesterApp.android.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import RNTesterApp from "./RNTesterAppShared"; 3 | 4 | declare module.exports: typeof RNTesterApp; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/rn-tester/js/RNTesterAppShared.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import * as React from "react"; 3 | 4 | declare var RNTesterApp: () => React.Node; 5 | 6 | declare export default typeof RNTesterApp; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/rn-tester/js/examples/WebSocket/http_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/inputs/packages/rn-tester/js/examples/WebSocket/websocket_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Animated/bezier.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare const $f2tExportDefault: (mX1: number, mY1: number, mX2: number, mY2: number) => (x: number) => number; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/BugReporting/dumpReactTree.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dumpReactTree(): string; 3 | declare const $f2tExportDefault: typeof dumpReactTree; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/BugReporting/getReactData.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function getData(element: Object): Object; 3 | declare const $f2tExportDefault: typeof getData; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/InitializeCore.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/checkNativeVersion.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/polyfillPromise.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpAlert.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpBatchedBridge.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpDeveloperTools.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpErrorHandling.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpGlobals.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpNavigator.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpPerformance.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpReactDevTools.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpReactRefresh.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpRegeneratorRuntime.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpSystrace.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpTimers.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Core/setUpXHR.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Image/AssetRegistry.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import $1 from "@react-native/assets/registry"; 3 | declare const $f2tExportDefault: typeof $1; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Image/RelativeImageStub.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare const $f2tExportDefault: number; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Pressability/HoverState.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function isHoverEnabled(): boolean; 3 | export { isHoverEnabled }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/ReactNative/HeadlessJsTaskError.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare class HeadlessJsTaskError extends Error {} 3 | export { HeadlessJsTaskError as default }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Renderer/shims/ReactFabric.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ReactNativeType } from "./ReactNativeTypes"; 3 | declare const $f2tExportDefault: ReactNativeType; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Renderer/shims/ReactNative.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ReactNativeType } from "./ReactNativeTypes"; 3 | declare const $f2tExportDefault: ReactNativeType; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/StyleSheet/EdgeInsetsPropType.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { Rect } from "./Rect"; 3 | declare type EdgeInsetsProp = Rect; 4 | export type { EdgeInsetsProp }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/StyleSheet/PointPropType.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare type PointProp = Readonly<{ 3 | x: number; 4 | y: number; 5 | }>; 6 | export type { PointProp }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Utilities/DebugEnvironment.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var isAsyncDebugging: boolean; 3 | export { isAsyncDebugging }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Utilities/DeviceInfo.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import NativeDeviceInfo from "./NativeDeviceInfo"; 3 | declare const $f2tExportDefault: typeof NativeDeviceInfo; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Utilities/dismissKeyboard.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dismissKeyboard(): void; 3 | declare const $f2tExportDefault: typeof dismissKeyboard; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Utilities/infoLog.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function infoLog(...args: unknown[]): void; 3 | declare const $f2tExportDefault: typeof infoLog; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/Libraries/Utilities/warnOnce.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function warnOnce(key: string, message: string): void; 3 | declare const $f2tExportDefault: typeof warnOnce; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/TypeScriptSupplementals/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./globals" 2 | export * from "./DeprecatedDefinitelyTypedExports" 3 | export * from "./DeprecatedLegacyDefinitelyTypedPropsExports" 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/android/outputs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmit": true, 4 | "esModuleInterop": true, 5 | "lib": ["es2015"], 6 | "types": [], 7 | "strict": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Animated/bezier.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/InitializeCore.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/checkNativeVersion.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/polyfillPromise.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpAlert.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpBatchedBridge.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpDeveloperTools.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpErrorHandling.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpGlobals.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpNavigator.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpPerformance.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpReactDevTools.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpReactRefresh.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpRegeneratorRuntime.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpSystrace.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpTimers.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Core/setUpXHR.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Image/RelativeImageStub.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/ReactNative/UIManagerProperties.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/hint/Libraries/Text/TextAncestor.hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {}, 3 | "typeofs": [], 4 | "decls": [] 5 | } -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/IntegrationTests/IntegrationTestsApp.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/IntegrationTests/websocket_integration_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Animated/__tests__/bezier-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Animated/bezier.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: ( 3 | mX1: number, 4 | mY1: number, 5 | mX2: number, 6 | mY2: number 7 | ) => (x: number) => number; 8 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Blob/__mocks__/BlobModule.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var BlobModule: {| 3 | createFromParts(): void, 4 | release(): void, 5 | |}; 6 | 7 | declare module.exports: typeof BlobModule; 8 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/BugReporting/dumpReactTree.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dumpReactTree(): string; 3 | 4 | declare module.exports: typeof dumpReactTree; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/BugReporting/getReactData.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function getData(element: Object): Object; 3 | 4 | declare module.exports: typeof getData; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/ActivityIndicator/__tests__/ActivityIndicator-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/DatePicker/__tests__/DatePickerIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/DrawerAndroid/__tests__/DrawerAndroid-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/Keyboard/__tests__/Keyboard-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/MaskedView/__tests__/MaskedViewIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/Picker/__tests__/Picker-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/Pressable/__tests__/Pressable-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/ProgressBarAndroid/__tests__/ProgressBarAndroid-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/ProgressViewIOS/__tests__/ProgressViewIOS-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/SafeAreaView/__tests__/SafeAreaView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/ScrollView/__tests__/ScrollView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: NativeSegmentedControlIOS; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/Sound/SoundManager.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var SoundManager: {| 3 | playTouchSound: () => void, 4 | |}; 5 | 6 | declare module.exports: typeof SoundManager; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/TextInput/__tests__/InputAccessoryView-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/TextInput/__tests__/TextInput-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Components/Touchable/ensurePositiveDelayProps.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var ensurePositiveDelayProps: (props: any) => void; 3 | 4 | declare module.exports: typeof ensurePositiveDelayProps; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/Devtools/__tests__/parseHermesStack-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/Devtools/openFileInEditor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function openFileInEditor(file: string, lineNumber: number): void; 3 | 4 | declare module.exports: typeof openFileInEditor; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/Devtools/openURLInBrowser.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function openURLInBrowser(url: string): void; 3 | 4 | declare module.exports: typeof openURLInBrowser; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/InitializeCore.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/ReactNativeVersionCheck.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {|checkVersions: () => void|}; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/checkNativeVersion.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/polyfillPromise.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpAlert.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpBatchedBridge.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpDeveloperTools.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpErrorHandling.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpGlobals.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpNavigator.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpPerformance.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpReactDevTools.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpReactRefresh.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpRegeneratorRuntime.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpSystrace.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpTimers.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Core/setUpXHR.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/EventEmitter/RCTEventEmitter.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var RCTEventEmitter: {| 3 | register(eventEmitter: any): void, 4 | |}; 5 | 6 | declare module.exports: typeof RCTEventEmitter; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/HeapCapture/HeapCapture.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var HeapCapture: {| 3 | captureHeap: (path: string) => void, 4 | |}; 5 | 6 | declare module.exports: typeof HeapCapture; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Image/AssetRegistry.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | const $1 = require("@react-native/assets/registry"); 3 | declare module.exports: typeof $1; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Image/RelativeImageStub.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: number; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Image/__tests__/Image-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Interaction/BridgeSpyStallHandler.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var BridgeSpyStallHandler: {| 3 | register: () => void, 4 | |}; 5 | 6 | declare module.exports: typeof BridgeSpyStallHandler; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/Data/__tests__/LogBoxData-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/Data/__tests__/LogBoxLog-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/Data/__tests__/LogBoxSymbolication-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/Data/__tests__/parseLogBoxLog-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxButton-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspector-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorCodeFrame-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorFooter-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorHeader-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorMesageHeader-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorReactFrames-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorSection-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorSourceMapStatus-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorStackFrame-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxInspectorStackFrames-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxMessage-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/UI/__tests__/LogBoxNotification-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/__tests__/LogBox-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/__tests__/LogBoxInspectorContainer-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/LogBox/__tests__/LogBoxNotificationContainer-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Modal/__tests__/Modal-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Network/fetch.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | fetch: typeof fetch, 4 | Headers: typeof Headers, 5 | Request: typeof Request, 6 | Response: typeof Response, 7 | |}; 8 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/NewAppScreen/components/Header.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Node} from "react"; 3 | 4 | declare var Header: () => Node; 5 | 6 | declare export default typeof Header; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/NewAppScreen/components/HermesBadge.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Node} from "react"; 3 | 4 | declare var HermesBadge: () => Node; 5 | 6 | declare export default typeof HermesBadge; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/NewAppScreen/components/LearnMoreLinks.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Node} from "react"; 3 | 4 | declare var LinkList: () => Node; 5 | 6 | declare export default typeof LinkList; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Performance/SamplingProfiler.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var SamplingProfiler: {| 3 | poke: (token: number) => void, 4 | |}; 5 | 6 | declare module.exports: typeof SamplingProfiler; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Pressability/HoverState.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function isHoverEnabled(): boolean; 3 | export {isHoverEnabled}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Pressability/__tests__/Pressability-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Promise.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var Promise: typeof $1; 3 | const $1 = require("promise/setimmediate/es6-extensions"); 4 | 5 | declare module.exports: typeof Promise; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/ReactNative/HeadlessJsTaskError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare class HeadlessJsTaskError extends $1 {} 3 | declare var $1: typeof Error; 4 | export {HeadlessJsTaskError as default}; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/ReactPrivate/ReactNativePrivateInitializeCore.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Renderer/shims/ReactFabric.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ReactNativeType} from "./ReactNativeTypes"; 3 | 4 | declare module.exports: ReactNativeType; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Renderer/shims/ReactNative.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ReactNativeType} from "./ReactNativeTypes"; 3 | 4 | declare module.exports: ReactNativeType; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/StyleSheet/EdgeInsetsPropType.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {Rect} from "./Rect"; 3 | 4 | type EdgeInsetsProp = Rect; 5 | export type {EdgeInsetsProp}; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/StyleSheet/PointPropType.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | type PointProp = $ReadOnly< 3 | { 4 | x: number, 5 | y: number, 6 | ..., 7 | }, 8 | >; 9 | export type {PointProp}; 10 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | testGoodCompose(): void, 4 | 5 | testBadCompose(): void, 6 | |}; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Text/TextAncestor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: React$Context<$FlowFixMe>; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Text/TextInjection.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import typeof Text from "./Text"; 3 | 4 | declare export default {| 5 | unstable_Text: ?Text, 6 | |}; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/DebugEnvironment.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var isAsyncDebugging: boolean; 3 | export {isAsyncDebugging}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/DeviceInfo.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import NativeDeviceInfo from "./NativeDeviceInfo"; 3 | 4 | declare module.exports: typeof NativeDeviceInfo; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/LoadingView.ios.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | showMessage(message: string, type: 'load' | 'refresh'): void, 4 | hide(): void, 5 | |}; 6 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/__tests__/PerformanceLogger-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/__tests__/setAndForwardRef-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/__tests__/stringifySafe-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/binaryToBase64.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function binaryToBase64(data: ArrayBuffer | $ArrayBufferView): string; 3 | 4 | declare module.exports: typeof binaryToBase64; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/clamp.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function clamp(min: number, value: number, max: number): number; 3 | 4 | declare module.exports: typeof clamp; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/dismissKeyboard.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dismissKeyboard(): void; 3 | 4 | declare module.exports: typeof dismissKeyboard; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/groupByEveryN.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function groupByEveryN(array: Array, n: number): Array>; 3 | 4 | declare module.exports: typeof groupByEveryN; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/infoLog.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function infoLog(...args: Array): void; 3 | 4 | declare module.exports: typeof infoLog; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/logError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var logError: (...args: $ReadOnlyArray) => void; 3 | 4 | declare module.exports: typeof logError; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/mergeIntoFast.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var mergeIntoFast: (one: Object, two: Object) => void; 3 | 4 | declare module.exports: typeof mergeIntoFast; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/Utilities/warnOnce.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function warnOnce(key: string, message: string): void; 3 | 4 | declare module.exports: typeof warnOnce; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/YellowBox/__tests__/YellowBoxDeprecated-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/__flowtests__/ReactNativeTypes-flowtest.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/promiseRejectionIsError.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: () => void; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/Libraries/vendor/core/ErrorUtils.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type {ErrorUtilsT} from "@react-native/polyfills/error-guard"; 3 | 4 | declare module.exports: ErrorUtilsT; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/ReactCommon/hermes/inspector/tools/msggen/src/GeneratedHeader.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var GeneratedHeader: string; 3 | export {GeneratedHeader}; 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/ReactCommon/hermes/inspector/tools/msggen/src/index.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow-typed/npm/base64-js_v1.x.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow-typed/npm/pretty-format_v26.x.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow-typed/npm/promise_v8.x.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow-typed/npm/prop-types_v15.x.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow-typed/npm/stacktrace-parser_v0.1.x.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow/Position.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow/Promise.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow/Stringish.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow/console.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/flow/use-subscription.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/interface.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/jest/mockScrollView.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: $FlowFixMe; 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/jest/preprocessor.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare module.exports: {| 3 | process(src: string, file: string): string, 4 | 5 | getCacheKey: any, 6 | |}; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/normalize-color/base.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function normalizeColorBase(color: ?string | number): null | number; 3 | 4 | declare module.exports: typeof normalizeColorBase; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/e2e/__tests__/modules/GenerateModuleObjCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/scripts/build.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/__tests__/SchemaValidator-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/cli/generators/generate-all.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/cli/parser/parser-cli.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/cli/parser/parser.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function parseFiles(files: Array): void; 3 | 4 | declare module.exports: typeof parseFiles; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/cli/verify_with_old_codegen.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateComponentDescriptorH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateComponentHObjCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateEventEmitterCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateEventEmitterH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsJavaDelegate-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GeneratePropsJavaInterface-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateShadowNodeCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateShadowNodeH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateTests-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/components/__tests__/GenerateViewConfigJs-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleHObjCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleJavaSpec-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleJniCpp-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleJniH-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/generators/modules/__tests__/GenerateModuleMm-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/parsers/flow/components/__tests__/component-parser-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/parsers/flow/modules/__tests__/module-parser-e2e-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/react-native-codegen/src/parsers/flow/modules/__tests__/module-parser-snapshot-test.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/rn-tester/js/RNTesterApp.ios.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import RNTesterApp from "./RNTesterAppShared"; 3 | 4 | declare module.exports: typeof RNTesterApp; 5 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/rn-tester/js/RNTesterAppShared.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | import * as React from "react"; 3 | 4 | declare var RNTesterApp: () => React.Node; 5 | 6 | declare export default typeof RNTesterApp; 7 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/rn-tester/js/examples/WebSocket/http_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/inputs/packages/rn-tester/js/examples/WebSocket/websocket_test_server.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/offences.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Animated/bezier.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare const $f2tExportDefault: (mX1: number, mY1: number, mX2: number, mY2: number) => (x: number) => number; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/BugReporting/dumpReactTree.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dumpReactTree(): string; 3 | declare const $f2tExportDefault: typeof dumpReactTree; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/BugReporting/getReactData.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function getData(element: Object): Object; 3 | declare const $f2tExportDefault: typeof getData; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/InitializeCore.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/checkNativeVersion.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/polyfillPromise.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpAlert.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpBatchedBridge.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpDeveloperTools.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpErrorHandling.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpGlobals.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpNavigator.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpPerformance.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpReactDevTools.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpReactRefresh.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpRegeneratorRuntime.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpSystrace.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpTimers.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Core/setUpXHR.d.ts: -------------------------------------------------------------------------------- 1 | // @flow -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Image/AssetRegistry.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import $1 from "@react-native/assets/registry"; 3 | declare const $f2tExportDefault: typeof $1; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Image/RelativeImageStub.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare const $f2tExportDefault: number; 3 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Pressability/HoverState.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function isHoverEnabled(): boolean; 3 | export { isHoverEnabled }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/ReactNative/HeadlessJsTaskError.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare class HeadlessJsTaskError extends Error {} 3 | export { HeadlessJsTaskError as default }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Renderer/shims/ReactFabric.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ReactNativeType } from "./ReactNativeTypes"; 3 | declare const $f2tExportDefault: ReactNativeType; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Renderer/shims/ReactNative.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { ReactNativeType } from "./ReactNativeTypes"; 3 | declare const $f2tExportDefault: ReactNativeType; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/StyleSheet/EdgeInsetsPropType.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { Rect } from "./Rect"; 3 | declare type EdgeInsetsProp = Rect; 4 | export type { EdgeInsetsProp }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/StyleSheet/PointPropType.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare type PointProp = Readonly<{ 3 | x: number; 4 | y: number; 5 | }>; 6 | export type { PointProp }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Utilities/DebugEnvironment.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var isAsyncDebugging: boolean; 3 | export { isAsyncDebugging }; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Utilities/DeviceInfo.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | import NativeDeviceInfo from "./NativeDeviceInfo"; 3 | declare const $f2tExportDefault: typeof NativeDeviceInfo; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Utilities/clamp.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function clamp(min: number, value: number, max: number): number; 3 | declare const $f2tExportDefault: typeof clamp; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Utilities/dismissKeyboard.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function dismissKeyboard(): void; 3 | declare const $f2tExportDefault: typeof dismissKeyboard; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Utilities/infoLog.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function infoLog(...args: unknown[]): void; 3 | declare const $f2tExportDefault: typeof infoLog; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Utilities/logError.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare var logError: (...args: ReadonlyArray) => void; 3 | declare const $f2tExportDefault: typeof logError; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/Libraries/Utilities/warnOnce.d.ts: -------------------------------------------------------------------------------- 1 | // @flow 2 | declare function warnOnce(key: string, message: string): void; 3 | declare const $f2tExportDefault: typeof warnOnce; 4 | export default $f2tExportDefault; -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/TypeScriptSupplementals/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./globals" 2 | export * from "./DeprecatedDefinitelyTypedExports" 3 | export * from "./DeprecatedLegacyDefinitelyTypedPropsExports" 4 | -------------------------------------------------------------------------------- /workbench/react-native/v0.64.1/ios/outputs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noEmit": true, 4 | "esModuleInterop": true, 5 | "lib": ["es2015"], 6 | "types": [], 7 | "strict": true 8 | } 9 | } 10 | --------------------------------------------------------------------------------