UNPKG

ant-design-x-vue-next

Version:

Ant Design X for Vue — community continuation aligned with @ant-design/x

7 lines (6 loc) 247 B
import type { ComputedRef, InjectionKey } from 'vue'; import type { Locale } from './types'; export type LocaleContextProps = Locale & { exist?: boolean; }; export declare const LocaleContextKey: InjectionKey<ComputedRef<LocaleContextProps>>;