lpw
2022-02-15 2e29a3a585524a054640bb6e7bdf26fe77ba1f17
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
11 #import <FBSDKCoreKit/FBSDKLoginTooltip.h>
12
13 NS_ASSUME_NONNULL_BEGIN
14
15 /**
16  Internal block type exposed to facilitate transition to Swift.
17  API Subject to change or removal without warning. Do not use.
18
19  @warning INTERNAL - DO NOT USE
20  */
21 NS_SWIFT_NAME(LoginTooltipBlock)
22 typedef void (^FBSDKLoginTooltipBlock)(FBSDKLoginTooltip *_Nullable loginTooltip, NSError *_Nullable error);
23
24 /**
25 Internal Type exposed to facilitate transition to Swift.
26 API Subject to change or removal without warning. Do not use.
27
28 @warning INTERNAL - DO NOT USE
29 */
30 NS_SWIFT_NAME(ServerConfigurationProvider)
31 @interface FBSDKServerConfigurationProvider : NSObject
32
33 /**
34  Internal method exposed to facilitate transition to Swift.
35  API Subject to change or removal without warning. Do not use.
36
37  @warning INTERNAL - DO NOT USE
38  */
39 @property (nonatomic, readonly) NSString *loggingToken;
40
41 /**
42  Internal method exposed to facilitate transition to Swift.
43  API Subject to change or removal without warning. Do not use.
44
45  @warning INTERNAL - DO NOT USE
46  */
47 - (NSUInteger)cachedSmartLoginOptions;
48
49 /**
50  Internal method exposed to facilitate transition to Swift.
51  API Subject to change or removal without warning. Do not use.
52
53  @warning INTERNAL - DO NOT USE
54  */
55 - (BOOL)useSafariViewControllerForDialogName:(NSString *)dialogName;
56
57 /**
58  Internal method exposed to facilitate transition to Swift.
59  API Subject to change or removal without warning. Do not use.
60
61  @warning INTERNAL - DO NOT USE
62  */
63 - (void)loadServerConfigurationWithCompletionBlock:(nullable FBSDKLoginTooltipBlock)completionBlock;
64 @end
65
66 NS_ASSUME_NONNULL_END