UNPKG

element-plus

Version:

A Component Library for Vue3.0

10 lines (9 loc) 305 B
export interface InstallOptions { size: ComponentSize; zIndex: number; locale?: any; i18n?: (...args: any[]) => string; } declare const setConfig: (option: InstallOptions) => void; declare const getConfig: (key: keyof InstallOptions) => unknown; export { getConfig, setConfig, };