UNPKG

@open-chat/chat-bubble

Version:

Chat bubble component.

13 lines (12 loc) 304 B
type useTypeWriterOpts = { text: string; every?: number; onFinish?: () => void; shouldStart?: boolean; }; export default function useTypeWriter({ text, every, onFinish, shouldStart }: useTypeWriterOpts): { displayText: string; isComplete: boolean; text: string; }; export {};