UNPKG

ant-design-x-vue-next

Version:

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

19 lines (18 loc) 1.02 kB
import Actions from './Actions.vue'; import ActionsAudio from './ActionsAudio.vue'; import ActionsCopy from './ActionsCopy.vue'; import ActionsFeedback from './ActionsFeedback.vue'; import ActionsItem from './ActionsItem.vue'; export type { ActionsProps, ActionItem, ItemType, SubItemType, ActionsSemanticType, ActionsRef, } from './interface'; export type { ActionsCopyProps, ActionsFeedbackProps, ActionsItemProps, ActionsAudioProps, } from './preset-types'; export type { ActionsCopySemanticType, ActionsFeedbackSemanticType, ActionsItemSemanticType, ActionsAudioSemanticType, } from './constants'; export { FEEDBACK_VALUE, ACTIONS_ITEM_STATUS } from './constants'; type CompoundedActions = typeof Actions & { Copy: typeof ActionsCopy; Feedback: typeof ActionsFeedback; Item: typeof ActionsItem; Audio: typeof ActionsAudio; }; declare const CompoundActions: CompoundedActions; export default CompoundActions; export { CompoundActions as Actions, ActionsCopy, ActionsFeedback, ActionsItem, ActionsAudio, };