UNPKG

ant-design-x-vue-next

Version:

Ant Design X for Vue — community continuation aligned with @ant-design/x

26 lines (25 loc) 563 B
export interface AntDesignXResolverOptions { /** * exclude components that do not require automatic import * * @default [] */ exclude?: string[]; /** * rename package * * @default 'ant-design-x-vue-next' */ packageName?: string; /** * customizable prefix for resolving components * * @default 'AX' */ prefix?: string; } export declare function AntDesignXVueResolver(options?: AntDesignXResolverOptions): (name: string) => { name: string; from: string; as: string; };