UNPKG

ant-design-x-vue-next

Version:

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

5 lines (4 loc) 378 B
import { type Ref } from 'vue'; import type { BubbleContentType } from '../interface'; declare const useTypedEffect: (content: Ref<BubbleContentType>, typingEnabled: Ref<boolean>, typingStep: Ref<number | [number, number]>, typingInterval: Ref<number>, keepPrefix?: Ref<boolean>) => [typedContent: Ref<BubbleContentType>, isTyping: Ref<boolean>]; export default useTypedEffect;