UNPKG

matrix-react-sdk

Version:
13 lines (12 loc) 379 B
import { Room } from "matrix-js-sdk/src/matrix"; interface Props { room?: Room; threadId?: string; /** * If true, where we would normally show a badge, we instead show a dot. No numeric count will * be displayed. */ forceDot?: boolean; } export declare function UnreadNotificationBadge({ room, threadId, forceDot }: Props): JSX.Element; export {};