UNPKG

create-expo-module

Version:

The script to create the Expo module

11 lines (10 loc) 398 B
export type DefaultEntry = { field: string; value: string; }; /** * Builds a warning message listing all fields that were not explicitly provided — * whether they fell back to a hardcoded default or were auto-derived from the environment. * Returns null if every field was explicitly provided. */ export declare function buildDefaultsWarning(defaults: DefaultEntry[]): string | null;