UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

8 lines (7 loc) 281 B
import type React from 'react'; export type CooldownTimerState = { cooldownInterval: number; setCooldownRemaining: React.Dispatch<React.SetStateAction<number | undefined>>; cooldownRemaining?: number; }; export declare const useCooldownTimer: () => CooldownTimerState;