UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

9 lines (8 loc) 429 B
import React from 'react'; import type { DefaultStreamChatGenerics } from '../../../types/types'; export type CooldownTimerState = { cooldownInterval: number; setCooldownRemaining: React.Dispatch<React.SetStateAction<number | undefined>>; cooldownRemaining?: number; }; export declare const useCooldownTimer: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>() => CooldownTimerState;