@arco-vue-pro-components/pro-components
Version:
基于@arco-design/web-vue组件的高级组件,包括pro-table
12 lines (11 loc) • 364 B
TypeScript
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>;