UNPKG

ant-design-x-vue-next

Version:

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

12 lines (11 loc) 773 B
import ThoughtChainComponent from './ThoughtChain.vue'; import ThoughtChainItemComponent from './ThoughtChainItem.vue'; export type { ThoughtChainProps, ThoughtChainItem, ThoughtChainItemType, ThoughtChainLine, ThoughtChainSemanticType, ThoughtChainRef, TooltipConfig, } from './interface'; export type { Collapsible, CollapsibleOptions } from './hooks/useCollapsible'; export type { ThoughtChainItemProps, ThoughtChainItemRef, ThoughtChainItemVariant, ThoughtChainItemStatus, ThoughtChainItemSemanticType, } from './item-types'; type CompoundedThoughtChain = typeof ThoughtChainComponent & { Item: typeof ThoughtChainItemComponent; }; declare const ThoughtChain: CompoundedThoughtChain; export default ThoughtChain; export { ThoughtChain, ThoughtChainItemComponent };