ssap_app/node_modules/@expo/config-plugins/build/utils/locales.d.ts

9 lines
464 B
TypeScript

import { ExpoConfig } from '@expo/config-types';
export type LocaleJson = Record<string, string> & {
ios?: Record<string, string>;
android?: Record<string, string>;
};
export type ResolvedLocalesJson = Record<string, LocaleJson>;
export type ExpoConfigLocales = NonNullable<ExpoConfig['locales']>;
export declare function getResolvedLocalesAsync(projectRoot: string, input: ExpoConfigLocales, forPlatform: 'ios' | 'android'): Promise<ResolvedLocalesJson>;