(config, props)
| 5 | import type {ConfigPluginProps} from './types'; |
| 6 | |
| 7 | const withMaps: ConfigPlugin<ConfigPluginProps> = (config, props) => { |
| 8 | config = withMapsIOS(config, props); |
| 9 | config = withMapsAndroid(config, props); |
| 10 | |
| 11 | return config; |
| 12 | }; |
| 13 | |
| 14 | export default withMaps; |
nothing calls this directly
no test coverage detected
searching dependent graphs…