lpw
2024-06-28 2a6e182ea4428bff2e16f033c28850f3a02a93a9
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 #import <Foundation/Foundation.h>
10
e0ec42 11 #if !TARGET_OS_TV
L 12
2e29a3 13 NS_ASSUME_NONNULL_BEGIN
L 14
15 NS_SWIFT_NAME(URLHosting)
16 @protocol FBSDKURLHosting
17
18 /**
19  Internal Type exposed to facilitate transition to Swift.
20  API Subject to change or removal without warning. Do not use.
21
22  @warning INTERNAL - DO NOT USE
23  */
24 - (nullable NSURL *)appURLWithHost:(NSString *)host
25                               path:(NSString *)path
26                    queryParameters:(NSDictionary<NSString *, NSString *> *)queryParameters
27                              error:(NSError *__autoreleasing *)errorRef;
28
29 /**
30  Internal Type exposed to facilitate transition to Swift.
31  API Subject to change or removal without warning. Do not use.
32
33  @warning INTERNAL - DO NOT USE
34  */
35 - (nullable NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix
36                                          path:(NSString *)path
37                               queryParameters:(NSDictionary<NSString *, NSString *> *)queryParameters
e0ec42 38                                         error:(NSError *__autoreleasing *)errorRef
L 39 NS_SWIFT_NAME(facebookURL(hostPrefix:path:queryParameters:));
40
2e29a3 41
L 42 @end
43
44 NS_ASSUME_NONNULL_END
e0ec42 45
L 46 #endif