UNPKG

@devlander/expo-app-config

Version:

A package to help with deployment of expo applications for different environments

8 lines (7 loc) 298 B
import type { BundleConfig, PieceOfConfig } from "./setup-config.types"; interface PartialConfig extends Partial<PieceOfConfig> { name: string; slug: string; } export declare const createBundle: (existingConfig: PartialConfig, bundleConfig: BundleConfig) => PieceOfConfig | any; export {};