File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,40 @@ module.exports = {
23
23
projectConfig : android . projectConfig ,
24
24
dependencyConfig : android . dependencyConfig ,
25
25
} ,
26
+ macos : {
27
+ linkConfig : ( ) => {
28
+ return {
29
+ isInstalled : (
30
+ _projectConfig /*ProjectConfig*/ ,
31
+ _package /*string*/ ,
32
+ _dependencyConfig /*DependencyConfig*/ ,
33
+ ) => false /*boolean*/ ,
34
+ register : (
35
+ _package /*string*/ ,
36
+ _dependencyConfig /*DependencyConfig*/ ,
37
+ _obj /*Object*/ ,
38
+ _projectConfig /*ProjectConfig*/ ,
39
+ ) => { } ,
40
+ unregister : (
41
+ _package /*string*/ ,
42
+ _dependencyConfig /*DependencyConfig*/ ,
43
+ _projectConfig /*ProjectConfig*/ ,
44
+ _dependencyConfigs /*Array<DependencyConfig>*/ ,
45
+ ) => { } ,
46
+ copyAssets : (
47
+ _assets /*string[]*/ ,
48
+ _projectConfig /*ProjectConfig*/ ,
49
+ ) => { } ,
50
+ unlinkAssets : (
51
+ _assets /*string[]*/ ,
52
+ _projectConfig /*ProjectConfig*/ ,
53
+ ) => { } ,
54
+ } ;
55
+ } ,
56
+ projectConfig : ( ) => null ,
57
+ dependencyConfig : ( ) => null ,
58
+ npmPackageName : 'react-native-macos' ,
59
+ } ,
26
60
} ,
27
61
reactNativePath : '../react-native' ,
28
62
project : {
You can’t perform that action at this time.
0 commit comments