Home
last modified time | relevance | path

Searched refs:rawConfig (Results 1 – 4 of 4) sorted by relevance

/expo/packages/expo-modules-autolinking/build/
H A DExpoModuleConfig.js14 rawConfig; field in ExpoModuleConfig
15 constructor(rawConfig) { argument
16 this.rawConfig = rawConfig;
28 const iosConfig = this.rawConfig.ios;
36 return this.rawConfig.ios?.appDelegateSubscribers ?? [];
42 return this.rawConfig.ios?.reactDelegateHandlers ?? [];
48 return arrayize(this.rawConfig.ios?.podspecPath);
54 return arrayize(this.rawConfig.ios?.swiftModuleName);
60 return this.rawConfig.ios?.debugOnly ?? false;
66 const androidConfig = this.rawConfig.android;
[all …]
H A DExpoModuleConfig.d.ts6 readonly rawConfig: RawExpoModuleConfig; property in ExpoModuleConfig
7 constructor(rawConfig: RawExpoModuleConfig);
H A DExpoModuleConfig.js.map1rawConfig: RawExpoModuleConfig) {}\n\n /**\n * Whether the module supports given platform.\n …
/expo/packages/expo-modules-autolinking/src/
H A DExpoModuleConfig.ts14 constructor(readonly rawConfig: RawExpoModuleConfig) {}
20 return this.rawConfig.platforms?.includes(platform) ?? false;
27 const iosConfig = this.rawConfig.ios;
37 return this.rawConfig.ios?.appDelegateSubscribers ?? [];
44 return this.rawConfig.ios?.reactDelegateHandlers ?? [];
51 return arrayize(this.rawConfig.ios?.podspecPath);
58 return arrayize(this.rawConfig.ios?.swiftModuleName);
65 return this.rawConfig.ios?.debugOnly ?? false;
72 const androidConfig = this.rawConfig.android;
82 return arrayize(this.rawConfig.android?.gradlePath ?? []);
[all …]