mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
f72776e8dc
Summary: In some cases the implementation for native modules are more advanced and we cannot currently generate some of the files. We've decided in these cases to only generate the props + events for now, so this flag `interfaceOnly` will only generate those files 👍
Reviewed By: TheSavior
Differential Revision: D14295980
fbshipit-source-id: 1790825143206a84469015e08958bf6f00ffde52
18 lines
889 B
C++
18 lines
889 B
C++
#import <react/components/INTERFACE_ONLY/ComponentDescriptors.h>
|
|
#import <react/components/BOOLEAN_PROP/ComponentDescriptors.h>
|
|
#import <react/components/STRING_PROP/ComponentDescriptors.h>
|
|
#import <react/components/INTEGER_PROPS/ComponentDescriptors.h>
|
|
#import <react/components/FLOAT_PROPS/ComponentDescriptors.h>
|
|
#import <react/components/COLOR_PROP/ComponentDescriptors.h>
|
|
#import <react/components/IMAGE_PROP/ComponentDescriptors.h>
|
|
#import <react/components/MULTI_NATIVE_PROP/ComponentDescriptors.h>
|
|
#import <react/components/ENUM_PROP/ComponentDescriptors.h>
|
|
#import <react/components/EVENT_NESTED_OBJECT_PROPS/ComponentDescriptors.h>
|
|
#import <react/components/EVENT_PROPS/ComponentDescriptors.h>
|
|
#import <react/components/TWO_COMPONENTS_SAME_FILE/ComponentDescriptors.h>
|
|
#import <react/components/TWO_COMPONENTS_DIFFERENT_FILES/ComponentDescriptors.h>
|
|
|
|
int main(){
|
|
return 0;
|
|
}
|