UNPKG

469 BTypeScriptView Raw
1import { AppJSONConfig, ConfigContext, ExpoConfig } from './Config.types';
2declare type RawDynamicConfig = AppJSONConfig | Partial<ExpoConfig> | null;
3declare type DynamicConfigResults = {
4 config: RawDynamicConfig;
5 exportedObjectType: string;
6};
7export declare function getDynamicConfig(configPath: string, request: ConfigContext): DynamicConfigResults;
8export declare function getStaticConfig(configPath: string): AppJSONConfig | ExpoConfig | null;
9export {};