@devlander/expo-app-config
Version:
A package to help with deployment of expo applications for different environments
16 lines (15 loc) • 498 B
TypeScript
import type { EnvType } from "./setup-config.types";
export interface ImagesForEnvironment {
splashImage: string;
iconImage: string;
adaptiveIconImage: string;
faviconImage: string;
}
interface NameForImageType {
splashFileName: string;
iconFileName: string;
adaptiveFileName: string;
faviconFileName: string;
}
export declare const getImagesForEnvironment: (env: EnvType, pathToCheck?: string, namesForImages?: NameForImageType) => ImagesForEnvironment;
export {};