this repo has no description
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8
9#import <Foundation/Foundation.h>
10
11#if __has_include(<React-RCTAppDelegate/RCTDependencyProvider.h>)
12#import <React-RCTAppDelegate/RCTDependencyProvider.h>
13#elif __has_include(<React_RCTAppDelegate/RCTDependencyProvider.h>)
14#import <React_RCTAppDelegate/RCTDependencyProvider.h>
15#else
16#import "RCTDependencyProvider.h"
17#endif
18
19NS_ASSUME_NONNULL_BEGIN
20
21@interface RCTAppDependencyProvider : NSObject <RCTDependencyProvider>
22
23@end
24
25NS_ASSUME_NONNULL_END