mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
505441fb2d
Summary: Fixes some misspellings of JavaScript. Changelog: [Internal] Reviewed By: cpojer Differential Revision: D21536786 fbshipit-source-id: d5551dfbb3895d0806d31ba38ecaeeeb7843bf20
17 lines
516 B
Objective-C
17 lines
516 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
/**
|
|
* This protocol should be adopted when a turbo module needs to directly call into JavaScript.
|
|
* In bridge-less React Native, it is a replacement for [_bridge enqueueJSCall:].
|
|
*/
|
|
@protocol RCTJSInvokerModule
|
|
|
|
@property (nonatomic, copy, nonnull) void (^invokeJS)(NSString *module, NSString *method, NSArray *args);
|
|
|
|
@end
|