element-plus-jsx
Version:
基于 Element Plus 扩展 JSX 语法的组件库
9 lines (8 loc) • 611 B
TypeScript
import type { App, ComponentInternalInstance } from 'vue';
export declare const setGlobalConfig: (app: App, extract: Record<string, any>) => void;
export declare const getConfig: (instance: ComponentInternalInstance, key: string) => any;
export declare const installPlugins: <T = any>(args: any, useKey: string) => T;
export declare const transWidth: (width?: string | number) => string;
export declare const filterKeys: (obj: Record<string, any> | undefined, keys: string[]) => any;
export declare const _get: (obj: any, path: any) => any;
export declare const _set: (obj: any, path: any, value: any) => void;