@jiaozhiye/qm-design-vue
Version:
A Component Library for Vue3.0
12 lines (11 loc) • 478 B
TypeScript
import type { ComponentSize, Locale, AnyObject } from './types';
export interface InstallOptions {
size?: ComponentSize;
locale?: Locale;
i18n?: (...args: any[]) => string;
zIndex?: number;
global?: AnyObject<any>;
}
declare const setConfig: (option: InstallOptions) => void;
declare const getConfig: (key: keyof InstallOptions) => number | ComponentSize | Locale | AnyObject<any> | ((...args: any[]) => string) | undefined;
export { getConfig, setConfig };