@devlander/expo-app-config
Version:
A package to help with deployment of expo applications for different environments
16 lines (15 loc) • 376 B
TypeScript
import { EnvType } from "./setup-config.types";
interface NamesForPackageConfig {
environmentName: EnvType;
title: string;
appName: string;
domainName: string;
}
export declare const createNamesForPackage: (config: NamesForPackageConfig) => {
name: string;
shortName: string;
scheme: string;
identifier: string;
slug: string;
};
export {};