UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

5 lines (4 loc) 316 B
import type { Locale } from '.'; export type LocaleComponentName = Exclude<keyof Locale, 'locale'>; declare const useLocale: <C extends LocaleComponentName = LocaleComponentName>(componentName: C, defaultLocale?: Locale[C] | (() => Locale[C])) => readonly [NonNullable<Locale[C]>, string]; export default useLocale;