You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
366 B
11 lines
366 B
import { PWAConfig } from 'expo-pwa';
|
|
import { Environment } from '../types';
|
|
/**
|
|
* Get the Expo project config in a way that's optimized for web.
|
|
*
|
|
* @param env Environment properties used for getting the Expo project config.
|
|
* @category env
|
|
*/
|
|
declare function getConfig(env: Pick<Environment, 'projectRoot' | 'config'>): PWAConfig;
|
|
export default getConfig;
|