UNPKG

@skippay/capacitor-localization-settings

Version:

Capacitor module to expose per-app language preferences API on iOS and Android.

11 lines (10 loc) 207 B
export interface LocalizationSettingsPlugin { getLanguage(): Promise<{ value: string; }>; setLanguage(options: { value: string; }): Promise<{ value: string; }>; }