ant-design-x-vue-next
Version:
Ant Design X for Vue — community continuation aligned with @ant-design/x
11 lines (10 loc) • 686 B
TypeScript
import ConversationsComponent from './Conversations.vue';
import Creation from './Creation.vue';
export type { ConversationsProps, ConversationsRef, Conversation, ConversationItemType, DividerItemType, ConversationsItems, ConversationsSemanticType, Groupable, GroupableProps, GroupCollapsible, GroupTitleRender, GroupTitleRenderComponents, GroupSorter, GroupLabel, CreationProps, CreationAlign, ShortcutKeys, } from './interface';
export { ShortcutKeyCode, isDividerItem } from './interface';
type Compounded = typeof ConversationsComponent & {
Creation: typeof Creation;
};
declare const Conversations: Compounded;
export default Conversations;
export { Conversations, Creation };