Fabric: Removed unused type aliases

Summary: Trivial.

Reviewed By: fkgozali

Differential Revision: D8212287

fbshipit-source-id: 228951742568d28a064ee03b6314a4c01532b9c9
This commit is contained in:
Valentin Shergin 2018-06-01 09:36:30 -07:00 committed by Facebook Github Bot
parent beb3fcda34
commit ec265df1d2

View File

@ -28,15 +28,6 @@ using InstanceHandle = struct InstanceHandleDummyStruct {} *;
using RawProps = std::map<std::string, folly::dynamic>;
using SharedRawProps = std::shared_ptr<const RawProps>;
/*
* Components event handlers.
* Something which usually called from JavaScript side.
*/
using BubblingEventHandler = void (*)(void);
using SharedBubblingEventHandler = std::shared_ptr<BubblingEventHandler>;
using DirectEventHandler = void (*)(void);
using SharedDirectEventHandler = std::shared_ptr<DirectEventHandler>;
/*
* Universal component handle which allows to refer to `ComponentDescriptor`s
* in maps efficiently.