Change type of params in methods' protocols to nongeneric

Summary:
It was mistake which I fix here. Type of param in protocols should be generated struct.

See generated struct in snap. It's exactly how it was in previous codegen

Reviewed By: RSNara

Differential Revision: D16770579

fbshipit-source-id: dac9c15c5d91a41ab2d06aea416f64bd7deb4476
This commit is contained in:
Michał Osadnik
2019-08-14 05:00:08 -07:00
committed by Facebook Github Bot
parent d3c30cdfe1
commit 024ce5d1d4
2 changed files with 14 additions and 10 deletions
@@ -149,7 +149,7 @@ inline NSString *JS::NativeSampleTurboModule::SpecDifficultAE::F() const
@protocol NativeSampleTurboModuleSpec <RCTBridgeModule, RCTTurboModule>
- (NSDictionary *) difficult:(NSDictionary *)A;
- (NSDictionary *) difficult:(JS::NativeSampleTurboModule::SpecDifficultA&)A;
@end