lpw
2024-06-24 14dac3416fa64cec3ca6523835297bf7a4d7d9bd
commit | author | age
2e29a3 1 /*
L 2  * Copyright (c) Meta Platforms, Inc. and affiliates.
3  * All rights reserved.
4  *
5  * This source code is licensed under the license found in the
6  * LICENSE file in the root directory of this source tree.
7  */
8
9 #if !TARGET_OS_TV
10
11 #import <Foundation/Foundation.h>
12
13 #import <FBSDKCoreKit/FBSDKBridgeAPIProtocolType.h>
14
15 @protocol FBSDKBridgeAPIRequest;
16
17 NS_ASSUME_NONNULL_BEGIN
18
19 /**
20  Internal Type exposed to facilitate transition to Swift.
21  API Subject to change or removal without warning. Do not use.
22
23  @warning INTERNAL - DO NOT USE
24  */
25 NS_SWIFT_NAME(BridgeAPIRequestCreating)
26 @protocol FBSDKBridgeAPIRequestCreating
27
28 - (nullable id<FBSDKBridgeAPIRequest>)bridgeAPIRequestWithProtocolType:(FBSDKBridgeAPIProtocolType)protocolType
29                                                                 scheme:(NSString *)scheme
30                                                             methodName:(nullable NSString *)methodName
31                                                             parameters:(nullable NSDictionary<NSString *, id> *)parameters
32                                                               userInfo:(nullable NSDictionary<NSString *, id> *)userInfo;
33
34 @end
35
36 NS_ASSUME_NONNULL_END
37
38 #endif