@digitalartlab/expo-plugin-localization
Version:
Native language switching in your Expo app
9 lines (8 loc) • 347 B
TypeScript
import { ConfigPlugin } from "expo/config-plugins";
/**
* Adds the actual Localizable.strings files to the iOS project folder. These files are empty and are only used to satisfy Xcode.
* This is a dangerous mod because it writes to the file system.
*/
export declare const withIosLocalizableResources: ConfigPlugin<{
locales: string[];
}>;