matrix-react-sdk
Version:
SDK for matrix.org using React
13 lines (12 loc) • 379 B
TypeScript
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 {};