@react-native-ohos/react-native-clippathview 1.1.9-rc.1 → 1.1.9-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- /**
1
+ /* *
2
2
  * MIT License
3
3
  *
4
4
  * Copyright (C) 2023 Huawei Device Co., Ltd.
@@ -22,16 +22,19 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
+ #ifndef RNCCLIPPATHTURBOMODULE_H
26
+ #define RNCCLIPPATHTURBOMODULE_H
27
+
25
28
  #pragma once
26
29
 
27
30
  #include <ReactCommon/TurboModule.h>
28
31
  #include "RNOH/ArkTSTurboModule.h"
29
32
 
30
33
  namespace rnoh {
34
+ class JSI_EXPORT RNCClipPathTurboModule : public ArkTSTurboModule {
35
+ public:
36
+ RNCClipPathTurboModule(const ArkTSTurboModule::Context ctx, const std::string name);
37
+ };
38
+ } // namespace rnoh
31
39
 
32
- class JSI_EXPORT RNCClipPathTurboModule : public ArkTSTurboModule {
33
- public:
34
- RNCClipPathTurboModule(const ArkTSTurboModule::Context ctx, const std::string name);
35
- };
36
-
37
- } // namespace rnoh
40
+ #endif