UNPKG

@arco-vue-pro-components/pro-components

Version:
12 lines (11 loc) 364 B
import { InjectionKey, Slots } from 'vue'; import { ArcoLang } from '../../locale/interface'; import { Size } from '../_utils/constant'; export interface ConfigProvider { slots: Slots; prefixCls?: string; locale?: ArcoLang; size?: Size; updateAtScroll?: boolean; } export declare const configProviderInjectionKey: InjectionKey<ConfigProvider>;