@qvant/qui-max
Version:
A Vue 3 Design system for Web.
10 lines (9 loc) • 327 B
TypeScript
export interface InstallOptions {
nextZIndex: number;
locale: string;
}
declare const setConfig: ({ zIndex, ...options }: Partial<Pick<InstallOptions, "locale"> & {
zIndex: number;
}>) => void;
declare const getConfig: <T extends keyof InstallOptions>(key: T) => InstallOptions[T];
export { getConfig, setConfig };