UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 280 B
import React from 'react'; export type CooldownTimerProps = { cooldownInterval: number; setCooldownRemaining: React.Dispatch<React.SetStateAction<number | undefined>>; }; export declare const CooldownTimer: ({ cooldownInterval }: CooldownTimerProps) => React.JSX.Element;