UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

15 lines (14 loc) 437 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; scrollToClose?: boolean; exchangeTime?: boolean; rtl?: boolean; } export declare const configProviderInjectionKey: InjectionKey<ConfigProvider>;