ant-design-x-vue-next
Version:
Ant Design X for Vue — community continuation aligned with @ant-design/x
5 lines (4 loc) • 302 B
TypeScript
import type { XComponentStyleConfig, XComponentsConfig } from '../../x-provider/context';
import { Ref } from 'vue';
declare const useXComponentConfig: <C extends keyof XComponentsConfig>(component: C) => Ref<Required<XComponentsConfig>[C] & XComponentStyleConfig>;
export default useXComponentConfig;