UNPKG

ant-design-x-vue-next

Version:

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

8 lines (7 loc) 402 B
import type { BaseComponent_v0_9, ComponentTree, ComponentWrapper_v0_8 } from './types'; export interface ComponentTransformer { transform(components: ComponentWrapper_v0_8[] | BaseComponent_v0_9[], version?: 'v0.8' | 'v0.9'): ComponentTree | null; getById(id: string): ComponentTree | undefined; reset(): void; } export declare function createComponentTransformer(): ComponentTransformer;