FBSDKAppEventsConfigurationProviding.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  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. #import <Foundation/Foundation.h>
  9. /**
  10. Internal type exposed to facilitate transition to Swift.
  11. API Subject to change or removal without warning. Do not use.
  12. @warning INTERNAL - DO NOT USE
  13. */
  14. NS_SWIFT_NAME(_AppEventsConfigurationProvidingBlock)
  15. typedef void (^FBSDKAppEventsConfigurationProvidingBlock)(void);
  16. NS_ASSUME_NONNULL_BEGIN
  17. @protocol FBSDKAppEventsConfiguration;
  18. /**
  19. Internal type exposed to facilitate transition to Swift.
  20. API Subject to change or removal without warning. Do not use.
  21. @warning INTERNAL - DO NOT USE
  22. */
  23. NS_SWIFT_NAME(_AppEventsConfigurationProviding)
  24. @protocol FBSDKAppEventsConfigurationProviding
  25. @property (nonatomic, readonly) id<FBSDKAppEventsConfiguration> cachedAppEventsConfiguration;
  26. - (void)loadAppEventsConfigurationWithBlock:(FBSDKAppEventsConfigurationProvidingBlock)block;
  27. @end
  28. NS_ASSUME_NONNULL_END